Search results for

file uri scheme

78,481 results found

Post

Replies

Boosts

Views

Activity

Reply to Can't sign in to my MacBook Pro at all after changing icloud password
I had a similar issue - in my case system preferences would hang on trying to access iCloud from its own pref pane or through the accounts pref pane. I solved it by deleting all files from the following folder:/Users/<MY HOME FOLDER>/Library/Application Support/iCloud/AccountsI was then able to get into the iCloud preference pane, where it asked me for my new password. After giving it, all was working again.It sounds like you'll have to delete the files while running OS X from another partition.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Can't display iCloud System Preferences pane
I had this exact problem too. I solved it by deleting all files from the following folder:/Users/<MY HOME FOLDER>/Library/Application Support/iCloud/AccountsI was then able to get into the iCloud preference pane, where it asked me for my new password. After giving it, all was working again.FWIW, I deleted the files while running OS X from another partition, but that was probably not essential.[Edit]: Based on responses to this, it is necessary to reboot after deleting the files.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Can't use or sign out of iCloud
I had this exact problem too. I solved it by deleting all files from the following folder:/Users/<MY HOME FOLDER>/Library/Application Support/iCloud/AccountsI was then able to get into the iCloud preference pane, where it asked me for my new password. After giving it, all was working again.FWIW, I deleted the files while running OS X from another partition, but that was probably not essential.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
SCNSceneSource.entryWithIdentifier not working with Xcode 7.0 and Swift 2.0
With Xcode 6.3.2 and Swift 1.3 Collada (DAE) files were loaded and entries found (e.g. animation) by using SCNSceneSource.entryWithIdentifier. With Xcode 7.0 and Swift 2.0, the file is loaded (SCNSceneSource.identifiersOfEntriesWithClass work) but no entries are found.Tried with MacOSX, iOS apps and several files.Her is the codelet sceneSource = SCNSceneSource(URL: url!, options: nil) let animationIDs = sceneSource.identifiersOfEntriesWithClass(CAAnimation.self) as [String] let animation : CAAnimation? = sceneSource.entryWithIdentifier(Name, withClass: CAAnimation.self)First two lines work and return identifiers including the one label Name. Line 3 returns only nil. Same code worked before with Xcode 6.3.2 and Swift 1.3
1
0
913
Jun ’15
Reply to Unable to log out of user profile/shutdown/restart in OSX 10.11
did you hard reset by holding the power button? Do you see the beachball/pinwheel icon? Try signing in via a different user account (google how to create a new admin account from single user mode if you don't have one or know how to create one) then sign into that admin account and do the following:Disable wifiDelete the files in the folder /Users/<YOUR REAL USER ACCOUNT>/Library/Application Support/iCloud/Accounts/RebootLog in to your normal accountIf this works, thanks go to user Max108 https://forums.developer.apple.com/people/Max108
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Music Match Songs Not Showing in iOS 9
After updating my iPhone 5s to iOS 9, my Music Match files are not showing even with the iCloud Music Library switch ON.They still show on my iOS 8 devices.I tried turning off the iCloud Music Library switch and turning it back on.After Loading Library finished, they still don't show.I've already reported this as a bug, but was wondering if anyone knows a work around?
3
0
522
Jun ’15
Reply to Watch OS 2 and App Groups.
I think not, this is from the transition guide:Your extension now stores files and data on Apple Watch. Any data that is not part of your Watch app or WatchKit extension bundle must be fetched the network or from the companion iOS app running on the user’s iPhone. You cannot rely on a shared group container to exchange files with your iOS app. Fetching files involves transferring them wirelessly to Apple Watch.This is a little troublesome for those of us currently using Core Data in a shared group. Is there any stremlined way to keep a core database in sync across the parent app and extension?
Topic: App & System Services SubTopic: General Tags:
Jun ’15
[NSObject init] vs NS_DESIGNATED_INITIALIZER
Just started building my app with 10.11 SDK and am getting a lot of warnings on classes where I have explicitly set NS_DESIGNATED_INITIALIZER where init is not one of them.E.g@interface MCChecksumAccumulator : NSObjecttypedef NS_OPTIONS(NSInteger, MCWantedChecksums){........};/- (instancetype)initWithWantedChecksums:(MCWantedChecksums)wanted NS_DESIGNATED_INITIALIZER;@end@implementation MCChecksumAccumulator <<<< Method override for the designated initializer of the superclass '-init' not found- (instancetype)initWithWantedChecksums:(MCWantedChecksums)wanted{...}@endIf I remove the NS_DESIGNATED_INITIALIZER from initWithWantedChecksums: then the warning goes away. But I've done this explicitly to prevent people trying to use init on this class directly.Looking at NSObject I see:- (instancetype)init#if NS_ENFORCE_NSOBJECT_DESIGNATED_INITIALIZER NS_DESIGNATED_INITIALIZER#endif ;and NS_ENFORCE_NSOBJECT_DESIGNATED_INITIALIZER is declared as:/ NS_ENFORCE_NSOBJECT_DESIGNATED_INITIALIZER == 1* marks -[NS
1
0
2.2k
Jun ’15
Play sound on watch
I tried to play sound, putting the files in WatchKit app, then: let soundURL = NSURL.fileURLWithPath(NSBundle.mainBundle().pathForResource(ShipBullet, ofType:wav)!) let asset = WKAudioFileAsset(URL:soundURL) let sound = WKAudioFilePlayerItem(asset:asset) let audioPlayer = WKAudioFilePlayer(playerItem:sound) audioPlayer!.play()And the app crashed. Am I doing something wrong?
13
0
6k
Jun ’15