Search results for

Account Locked

31,796 results found

Post

Replies

Boosts

Views

Activity

Show crashes in xcode
Hi,An other member of my team (Organization) published an archive on itunes connect, via Xcode (For TestFlight). After 2-3 days, he can show crashes on Xcode Organizer.But my xcode show anything. We have both itunes account with Admin role.Can I show the crashes without building archives ? Any maners to see crashes, or is just in the Xcode of the person who build ?ThanksEdit : I have an account for Member Center and another email for iTunes connect, should be the reason ?
1
0
401
Jun ’15
Reply to So long good community support.
That, what you just said:- Why does a post with a URL in it get stuck in waiting for moderator for days and days at a time?- The filtering and automatic-moderation delays appear to be adaptive, and appear to be premised on This is a newly created account, if it does something suspicious like embed URLS, use words in the swear-filter, or similar things, make the moderators look at the post before allowing it through.should be clearly announced and explained somewhere. I've been unable to ask some questions (stuck in Drafts waiting forever for moderation) and assumed that it was a bug, unitl perhaps now then, if what you say is true. Anyhow, it's very frustrating, and I still have such stuck questions in my Drafts even though I'm at Level 2 (30).
Jun ’15
Yahoo Mail Password Crashing iPad
Have iOS 9 installed on iPhone and iPad. I also have Yahoo Mail accounts on both.iPhone - Lots and lots and lots of pops up telling me my password is incorrect, try entering again. I just ignore them and Mail is pulling fine.iPad - Would not pull Mail so I went into Mail settings and started re-entering my password for Yahoo Mail. For discussion purposes, my password contains these characters......ica#Y......When I enter the Y, Settings crashes. 100% of the time.So...any thoughts on a) why this is happening and b) why only on the iPad.
5
0
1.1k
Jun ’15
Game Center authentication sign out query
Hello everyone,I have a query with regards to Game Center authentication capabilities. While taking this method into consideration I arrived at an edge case for which I would request some additional information or guidance. In the following event: 1.An user boots the app on an iOS device and authenticates with a Game Center account 2.Then resets the device to erase hishers information of it (maybe to sell it) 3.Picks up another device to play the same app on, but this time he does not sign in with a Game Center account 4.The user plays for a while and makes some progress 5.Then decides to sign back into the previously used Game Center account. At this point a conflict would arise between the existing progress information between the Game Center account and the local progress (achieved without the Game Center account). Given the available documentation, would it pose a concern to show user a warning dialog informing that due to the Game Center sign-in, the user can
0
0
335
Jun ’15
Cannot enable icloud contacts or notes
I cannot sign out of my iCloud account via system prefs. Also, I am unable to select the Contacts checkbox nor the Notes check box in my iCloud account is system prefs. This is the cause for iMessage not displaying names and only numbers I'm guessing. Anyone found a solution to get contacts working?I additionally cannot enable iCloud Drive, Mail or Back to My Mac. I am able to check the checkbox, but it is immediately removed.
2
0
519
Jun ’15
CalDAV
I am using the 1st El Capitan Beta and having an issue with Calendar. I am able to create an account (on my client computer) for my CalDAV server (Apple Server) . However, I see none of the calendar entries that were created by others. I can create and delete an event and that shows up, but not the other entries (mainly created by 1 person).Anybody else having this issue? Am I doing something wrong or should I enter a bug report?Thanks!CodeWrangler
0
0
243
Jun ’15
Fix re-entering password 10x on login - Keychain access iCloud on El Capitan
I have to keep entering in my password about 10x every time I restart even after authenticating my iCloud keychain access on my devices and Macbook Pro. How do I make sure that the Keychain access works properly so I don't need to enter in my password 10x everytime I restart my MacBook Pro or log-in?It also says pending on my iCloud Keychain on my iPhone.I tried going back into Settings > iCloud -- but it crashes every single time. I have also tried going to this locally on my browser, but don't know how to delete the files? file:///Users/<user name>/Library/Application%20Support/iCloud/Accounts/
6
0
2.7k
Jun ’15
Reply to NSTableView dynamic cell row height?
I’m afraid there’s no magic bullet for this. PeterNeg is right that you have to use -tableView:heightOfRow:, but it’s quite complicated to set up, because you’ll need to maintain a cache or row heights (so that you don’t recalculate them every time your delegate is queried, which will slow things down), and you’ll have to do all the height calculations on your own using NSLayoutManager methods. You’ll also need to observe changes to the frame of the edited text field, and changes to the text, and tell your table to resize accordingly.Below is a full breakdown of how I achieve this in my app. Mine is done in NSOutlineView and in Objective-C, but the principle is the same, so you can adapt this for NSTableView and Swift.1. Keep a dictionary of row heights. This will store the row height NSNumber against a unique ID of some sort associated with your model object.2. Maintain an isRecalculatingRowHeights BOOL.3. Implement a -recalculateRowHeights method which:a. Removes all objects from the rowHeights dictionary.b
Topic: UI Frameworks SubTopic: AppKit Tags:
Jun ’15
Reply to Swift 2.0 Standard Library inclusion in app bundle
There were no public statements that Swift 2.0 would eliminate that requirement (just some rumor sites claiming that) and in fact Swift 2 will continue to require the standard library in your app.We are interested in making Swift ABI stable going forward, but will need more time to settle things out. In particular, we want to make sure that we get to incorporate ideas and feedback from the open source community before locking things down.That said, App Thinning does significantly improve things here, because you're only delivering one slices of the standard library to your users instead of everything together.-Chris
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15