Has anyone else had a problem with getting iCloud Keychain to work? I put in the verification code but it just hangs.
Search results for
Request failed with http status code 503
190,679 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
When I go to Settings / iCloud, my AppleID is there, but when I tap the disclosure triangle/icon (>), iOS asks me my to Sign in with Apple ID (i.e., enter password for my Apple ID).I enter the password but get the error message/alert:Title: Verification FailedMessage: An unknown error occurredButtons: Cancel / Try AgainI tried updating my password at MyAppleID, to no effect.I have 2-step verification enabled.
Hi,I am newbie to Swift development. I am wondering if there is a way for me to switch the device to low power mode from within my app? I did manage to find the url - https://developer.apple.com/library/mac/documentation/DeviceDrivers/Conceptual/IOKitFundamentals/PowerMgmt/PowerMgmt.htmlBut, not sure whether this would help me with what I am trying to do..Uday
Would a reset help, like this?https://support.apple.com/en-us/HT204568
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I have a shared album iCloudSharedAlbum using iCloud1. How do I get comments attached to a photo?2. How do I get the recently added comment on a photo I am observing? (Using PHPhotoLibraryChangeObserver protocol)I have been trying with the official sample: https://developer.apple.com/library/ios/samplecode/UsingPhotosFramework/Introduction/Intro.htmlI just changed a couple of lines to show shared albums (In AAPLRootListViewController awakeFromNib method)PHFetchResult *smartAlbums = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeAlbum subtype:PHAssetCollectionSubtypeAlbumCloudShared options:nil];I add a comment to the shared photo and wait for the changes to be reflected in the sample app.-[AAPLAssetGridViewController photoLibraryDidChange:] it IS called!. However changes are nil // self.assetsFetchResults is a list of photos I am showing. // There is only one photo in the list, the one being shared and the one the comment was just added PHFetchResultChangeDetails *collectionCha
birthday and party are two separate events and they both could be selected in a single entry and it doesnt reduce to a single event called 'birthday party'. Using this app called 'Core Data Editor' I found out that my code was only taking one event where multiple are selected. So my store didnt have any entry with two events Birthday and Party! I guess I found where the bug is.
Topic:
App & System Services
SubTopic:
iCloud & Data
Tags:
As explained in the keynote, by default all apps built with iOS 9 SDK are opted-in to Application Transport Security. HTTPS (with the most secure options currently available - maybe your server is using weaker keys or something) is required. You can opt out with a plist key - search these forums for NSAppTransportSecurity for several other threads on the topic.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Have you filed a feature request describing your use case?
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I've found that Xcode 7 seems to generate its code coverage results on a xccoverage file inside Logs/Test on my project's derived data folder. Is there a way to get this file name from xcodebuild? Also, is there a way to convert it to another format (gcov or Cobertura XML for example)?
See: QA1514: Technical Q&A QA1514: Configuring Xcode for Code Coverage...it explains how to save that file to your choice of location.You may need to use Report Bugs to make a feature request if you'd like the ability to convert/export.◅▻
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
I started the new Xcode, after converting to new standard and Swift, nothing seems to change, it is still the same old WatchKit model (iPhone app runs code). How do I convert to WatchKit 2?
Same problem here when I used the iTunes restore. Failed back to doing an iCloud restore instead. Looked like it at least worked. But I'm on almost 24 hours and only about half of my apps have been re-downloaded so far..Almost seems like the internet connectivity is on a slow drip, battery gets warm and drains, and the AppStore is crashing or something else is making it stop or slow downloading apps. I reboot the iPhone 6 once and while and it seems to download a little bit more at a faster pace.. Not sure if I'm just going crazy. :-)
Topic:
App & System Services
SubTopic:
Core OS
Tags:
As the title says, I keep getting locked out of Apple Support.When not being a (non recepiant of an amazing Apple Design Award and) developer, I'm repairing Mac's and such. Attempting to access How to troubleshoot Wi-Fi connectivity in OS X Lion or earlierLearn how to troubleshoot Wi-Fi network connectivity issues on your Mac gives me Access Denied You don't have permission to access http://support.apple.com/en-us/HT202222 on this server. and a referance number. Normally accessing these documents without going through Apple Support, I cleared my browser and cache and went through here: http://www.apple.com/support/macbookpro/wifi/. Same problem.What I've done:Cleared my cacheCleared my historyCleared my history & website dataRestarted SafariRestareted OS XAll results in the same Access Denied and no permission to access to support.apple.com all together unless I access Apple.com first and click the Support button.
Thanks Dave. In particular I wanted to know if enums with associated values (i.e. union types) have reflection support.I use SwiftyStateMachine and my code base is filled with the type of boilerplate shown below. Enumerating enum case labels and getting textual representation of the label names is time consuming, error prone and increases code size considerably. I'd obviously like full reflection capabilities like .NET or Java, with full assembly metadata... looks like we'll have to keep banging out the boilerplate. Roll on Swift 3.0!// MARK: StoryBookState DOTLabelable extension extension StoryBookState: DOTLabelable { public static var DOTLabelableItems: [StoryBookState] { let items: [StoryBookState] = [.Welcome(nil), .Praise(nil, nil), .InvitationToRepeat(nil, nil), .TurnToNextPage(nil), .End] // Trick: switch on all cases and get an error if you miss any. // Copy and paste the following cases to the array above. for item in items { switch item { case .Welcome, .Praise, .InvitationToRepea
Topic:
Programming Languages
SubTopic:
Swift
Tags:
my orginial code... NSPredicate *eventEqualToPredicate= [NSComparisonPredicate predicateWithLeftExpression:eventLHS rightExpression:eventRHS modifier:NSAnyPredicateModifier type:NSLikePredicateOperatorType options:NSDiacriticInsensitivePredicateOption]; [eventsComparisionPredicates addObject:eventEqualToPredicate];is working now!
Topic:
App & System Services
SubTopic:
iCloud & Data
Tags: