Search results for

“file uri scheme”

81,721 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
939
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
537
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.3k
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
6.1k
Jun ’15
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:
Replies
Boosts
Views
Activity
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:
Replies
Boosts
Views
Activity
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:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Can't sign in to my MacBook Pro at all after changing icloud password
Excellent, thanks for this. I'll add that I had gotten around my login to the desktop issue by resetting my account password from an alternate admin account and disabling wifi. This let me get to the desktop but not the iCloud preferences. After deleting these files I needed to reboot to get the preferences pane to work again.Thanks for your help.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
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
Replies
1
Boosts
0
Views
939
Activity
Jun ’15
Reply to Can't display iCloud System Preferences pane
This worked for me, I was able to log into my own profile, delete these files and reboot, then the preferences pane worked going forward.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Can't sign in to my MacBook Pro at all after changing icloud password
Rebooting is needed after deleting the files. Good find btw.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
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:
Replies
Boosts
Views
Activity
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?
Replies
3
Boosts
0
Views
537
Activity
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:
Replies
Boosts
Views
Activity
Jun ’15
invalid bundle no apple watch binary
The app build successfully but couple seconds later Xcode throw this (topic) error at me. Anyone run into similar issue? I've checked the Executable file name in info.plist and everything match.
Replies
10
Boosts
0
Views
3.4k
Activity
Jun ’15
Reply to sublime text in el capitan
What themes are you using?I am using the Asphalt - Orange theme for Sublime Text 3 and their color schemes and I am not seeing an issue here but maybe that's because my ST is black bg with white texts (etc)
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
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
Replies
1
Boosts
0
Views
2.3k
Activity
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?
Replies
13
Boosts
0
Views
6.1k
Activity
Jun ’15
values clamped to 1.0 when blending rgba16f textures
Hello,We have seen that the values are clamped to 1.0 when blending is enabled for floating point render targets.I just filed a bug report for this: 21320124I have attached a gputrace file (in the bug report) where the error can be easily reproduced.Thanks,Eduard Gonzalez
Replies
0
Boosts
0
Views
323
Activity
Jun ’15