Search results for

“DTiPhoneSimulatorErrorDomain Code 2”

162,352 results found

Post

Replies

Boosts

Views

Activity

Reply to CloudKit and offline sync
The whole point of CloudKit is that you control how and when you access the data. It's a cloud database; it's up to your code when you want to fetch / sync it.If you need automatic syncing to local storage then that's Core Data with iCloud.
Topic: App & System Services SubTopic: iCloud Tags:
Jun ’15
Get X509 Data without OpenSSL
I previously would check if one certificate signed another (used to construct a certificate chain, NOT to validate), using the following code to create the data representation for the leaf certificate: CFDataRef data = SecCertificateCopyData(certificate); const UInt8 *buffer = CFDataGetBytePtr(data); X509 *x = X509_new(); d2i_X509(&x, &buffer, CFDataGetLength(data)); CFRelease(data); int length = i2d_X509_CINF(x->cert_info, NULL); unsigned char *info = malloc(length), *infoPtr = info; i2d_X509_CINF(x->cert_info, &info); X509_free(x); return CFDataCreateWithBytesNoCopy(kCFAllocatorDefault, infoPtr, length, kCFAllocatorMalloc);OpenSSL is now gone from 10.11, is there another method of creating this representation?I didn't see anything like this in CryptoCompatibility
7
0
2.5k
Jun ’15
Filesystem Lab notes
Question: On Yosemite, there is an issue where FileVault 2 will report Encrypted Paused during the encryption process, then never resume. It won't decrypt, and the only fix seemed to be deleting the CoreStorage volume.Is there a fix for this besides deleting the CoreStorage volume? For example, how to unpause and either resume encryption or decrypt?Answer:The Encryption Paused issue was addressed in 10.10.3. The root cause was a problem with resizing the CoreStorage volume. When the CoreStorage volume was unable to grow, the encryption was paused and could not resume until the resize issue was addressed.To fix this issue:1. Update your Mac to 10.10.3, or boot from an alternate drive which is running 10.10.3.2. Un-lock the encrypted drive if necessary3. Open Terminal4. Run the following command to get your Mac's disk identifier:diskutil list5. Once you have the disk identifier information, run the following command:sudo fsck_cs -y disk_identifier_goes_here6. fsck_cs should repair the CoreStorage volum
6
0
2.3k
Jun ’15
iBooks won't login to iCloud
When i open iBooks, it show me a windows to login with my icloud ID. When i press enter, the windows disappears and become gray, with the name window and a spinning wheel (not when it crash, but when it's thinking/connecting). Then it comes back with the same login screen and the text An unknow error occured. When i close this window, iBooks hang and i have to force close the program.Console info:09-06-15 19:32:01,755 storeaccountd[567]: ADI: { Connection = keep-alive; Content-Length = 20; Content-Type = application/x-dmap-tagged; Date = Tue, 09 Jun 2015 17:31:59 GMT; Strict-Transport-Security = max-age=31536000; apple-timing-app = 5 ms; server-cloud-daap-version = 1.0; x-apple-application-instance = 404602; x-apple-application-site = ST11; x-apple-jingle-correlation-key = P6GIJJU424NU6YWNKOWSGTFHTI; x-webobjects-loadaverage = 0;}09-06-15 19:32:01,000 kernel[0]: Sandbox: iBooks(1543) deny(1) mach-lookup com.apple.dock.appstore09-06-15 19:32:01,763 iBooks[1543]: Could not find image named 'NSImage'.09-06-15 19
1
0
801
Jun ’15
Reply to Java SE 6 Runtime messed up my laptop apps...
Just says Java for OS X 2014-001 can't be installed on this disk. A newer version of this package is already installed. I also used a code from Apple Support to delete all the java's it all workes but the last command that containt /usr/bin/ and after I use it to enable Java SE 6 Runtime to work it says Operation is not permitted
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Filesystem Lab notes
I asked the Filesystems lab guys about the CoreStorage volume creation by the OS installer in Yosemite and later. According to the engineers, the only reason for the CoreStorage volume creation by the OS installer in Yosemite and later is to support FileVault 2. I asked it was to support anything else and they said no.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
First Time Coding
Hey, I was hoping some of you guys could give me some links to somewhere which would help me learn to code with Swift. This is my first time coding, so I have no background experience at all.I have basically thought of an app idea, and I need to learn how to set up a link in the app so that the user would be able to call someone just by pressing a button in the app. If any of you woukd be able to give me any tips, any help at all would be appreciated.By the way, the app is for an iOS. In the future, I also plan on developing the app for watchOS.Thanks,Luke.By the wy, the app is for an iPhone 6, if that makes a difference.
3
0
787
Jun ’15
Request temporary one-time exemption to 64-bit deadline?
A client of ours finished QA testing an app update a week late and missed the cutoff for 32-bit support. The app is built on an old framework that is tightly integrated with libraries only built for 32-bit. We are fully aware that this stale code will need to be updated, but this update has already taken much more development time than anticipated, so we would like to make it available as soon as possible. Is there any process for requesting a one-time exemption to avoid delaying App Store submission any longer?
2
0
364
Jun ’15
Reply to Does anyone know if Apple Music will be on the iOS 9 Beta on the 30th.
I'm sure it will. I think it was Apple Pay that they did this for too. They had an 8 release and 8 beta 2 at the same time, but when they introduced it they did beta 3, and gave people 8.1 (something like that with the versions, I don't remember the exact)So what they will probably do is releaes 8.4 officially, then iOS9 will get iOS9 beta 2 that will fix some stuff and also patch with the new music app. They will definitly include it in the 9 betas at some point since it integrates with all the new siri and search stuff too!
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to CloudKit and offline sync
The whole point of CloudKit is that you control how and when you access the data. It's a cloud database; it's up to your code when you want to fetch / sync it.If you need automatic syncing to local storage then that's Core Data with iCloud.
Topic: App & System Services SubTopic: iCloud Tags:
Replies
Boosts
Views
Activity
Jun ’15
Get X509 Data without OpenSSL
I previously would check if one certificate signed another (used to construct a certificate chain, NOT to validate), using the following code to create the data representation for the leaf certificate: CFDataRef data = SecCertificateCopyData(certificate); const UInt8 *buffer = CFDataGetBytePtr(data); X509 *x = X509_new(); d2i_X509(&x, &buffer, CFDataGetLength(data)); CFRelease(data); int length = i2d_X509_CINF(x->cert_info, NULL); unsigned char *info = malloc(length), *infoPtr = info; i2d_X509_CINF(x->cert_info, &info); X509_free(x); return CFDataCreateWithBytesNoCopy(kCFAllocatorDefault, infoPtr, length, kCFAllocatorMalloc);OpenSSL is now gone from 10.11, is there another method of creating this representation?I didn't see anything like this in CryptoCompatibility
Replies
7
Boosts
0
Views
2.5k
Activity
Jun ’15
Filesystem Lab notes
Question: On Yosemite, there is an issue where FileVault 2 will report Encrypted Paused during the encryption process, then never resume. It won't decrypt, and the only fix seemed to be deleting the CoreStorage volume.Is there a fix for this besides deleting the CoreStorage volume? For example, how to unpause and either resume encryption or decrypt?Answer:The Encryption Paused issue was addressed in 10.10.3. The root cause was a problem with resizing the CoreStorage volume. When the CoreStorage volume was unable to grow, the encryption was paused and could not resume until the resize issue was addressed.To fix this issue:1. Update your Mac to 10.10.3, or boot from an alternate drive which is running 10.10.3.2. Un-lock the encrypted drive if necessary3. Open Terminal4. Run the following command to get your Mac's disk identifier:diskutil list5. Once you have the disk identifier information, run the following command:sudo fsck_cs -y disk_identifier_goes_here6. fsck_cs should repair the CoreStorage volum
Replies
6
Boosts
0
Views
2.3k
Activity
Jun ’15
Reply to iOS 9 Beta battery life
Yah Why does my battery go from 100% to 0% in 5 hours and only 2 hours of use?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Converted 32bit to 64bit app Crashes
That's like calling your auto mechanic over the phone and saying my car isn't running right and expecting him to diagnose it with only that info. We are not going to play twenty questions here. Post what debugging steps you've taken so far. Post your symbolicated crash log and relevant pieces of code, if any, and then maybe someone can help.
Replies
Boosts
Views
Activity
Jun ’15
Watchos 2 photos don't sync
Installed WatchOS 2, and there doesn't seem to be a way to trigger photos to copy from phone to watch. There's no sync button obviously...but it's not doing it without one! :)
Replies
3
Boosts
0
Views
942
Activity
Jun ’15
iBooks won't login to iCloud
When i open iBooks, it show me a windows to login with my icloud ID. When i press enter, the windows disappears and become gray, with the name window and a spinning wheel (not when it crash, but when it's thinking/connecting). Then it comes back with the same login screen and the text An unknow error occured. When i close this window, iBooks hang and i have to force close the program.Console info:09-06-15 19:32:01,755 storeaccountd[567]: ADI: { Connection = keep-alive; Content-Length = 20; Content-Type = application/x-dmap-tagged; Date = Tue, 09 Jun 2015 17:31:59 GMT; Strict-Transport-Security = max-age=31536000; apple-timing-app = 5 ms; server-cloud-daap-version = 1.0; x-apple-application-instance = 404602; x-apple-application-site = ST11; x-apple-jingle-correlation-key = P6GIJJU424NU6YWNKOWSGTFHTI; x-webobjects-loadaverage = 0;}09-06-15 19:32:01,000 kernel[0]: Sandbox: iBooks(1543) deny(1) mach-lookup com.apple.dock.appstore09-06-15 19:32:01,763 iBooks[1543]: Could not find image named 'NSImage'.09-06-15 19
Replies
1
Boosts
0
Views
801
Activity
Jun ’15
Reply to Filesystem Lab notes
Same here tried to use the /usr/bin/ in part of a code in terminal to delete the Java. It didnt work just told me Operation not Permitted
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Java SE 6 Runtime messed up my laptop apps...
Just says Java for OS X 2014-001 can't be installed on this disk. A newer version of this package is already installed. I also used a code from Apple Support to delete all the java's it all workes but the last command that containt /usr/bin/ and after I use it to enable Java SE 6 Runtime to work it says Operation is not permitted
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Filesystem Lab notes
I asked the Filesystems lab guys about the CoreStorage volume creation by the OS installer in Yosemite and later. According to the engineers, the only reason for the CoreStorage volume creation by the OS installer in Yosemite and later is to support FileVault 2. I asked it was to support anything else and they said no.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
IOS 9 Split screen feature not working on iPad Air 2
Is this feature just not available yet?I am able to access the swipe left and see a sidebar view but not able to access the half and half, split screen view.
Replies
2
Boosts
0
Views
3.5k
Activity
Jun ’15
IOS 9 video embedding feature on iPad Air 2 is not working for me
I am trying to watch youtube videos on Safari on an iPad Air 2 embedded within my mail app, as was demonstrated at WWDC yesterday. Is this feature available yet?
Replies
1
Boosts
0
Views
278
Activity
Jun ’15
First Time Coding
Hey, I was hoping some of you guys could give me some links to somewhere which would help me learn to code with Swift. This is my first time coding, so I have no background experience at all.I have basically thought of an app idea, and I need to learn how to set up a link in the app so that the user would be able to call someone just by pressing a button in the app. If any of you woukd be able to give me any tips, any help at all would be appreciated.By the way, the app is for an iOS. In the future, I also plan on developing the app for watchOS.Thanks,Luke.By the wy, the app is for an iPhone 6, if that makes a difference.
Replies
3
Boosts
0
Views
787
Activity
Jun ’15
Request temporary one-time exemption to 64-bit deadline?
A client of ours finished QA testing an app update a week late and missed the cutoff for 32-bit support. The app is built on an old framework that is tightly integrated with libraries only built for 32-bit. We are fully aware that this stale code will need to be updated, but this update has already taken much more development time than anticipated, so we would like to make it available as soon as possible. Is there any process for requesting a one-time exemption to avoid delaying App Store submission any longer?
Replies
2
Boosts
0
Views
364
Activity
Jun ’15
Reply to Does anyone know if Apple Music will be on the iOS 9 Beta on the 30th.
I'm sure it will. I think it was Apple Pay that they did this for too. They had an 8 release and 8 beta 2 at the same time, but when they introduced it they did beta 3, and gave people 8.1 (something like that with the versions, I don't remember the exact)So what they will probably do is releaes 8.4 officially, then iOS9 will get iOS9 beta 2 that will fix some stuff and also patch with the new music app. They will definitly include it in the 9 betas at some point since it integrates with all the new siri and search stuff too!
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15