Search results for

“DTiPhoneSimulatorErrorDomain Code 2”

162,350 results found

Post

Replies

Boosts

Views

Activity

Developer Subscription enrollment not completing.
Hello guys. It's been 2 weeks since I paid for my developer account and I haven't received access to the developer tools yet. I finished all the process and still nothing, the money has also been charged from my bank account. Also I contacted https://developer.apple.com/contact/ but I haven't received any answer from them. I don't know how to proceed.
1
0
79
6d
Apple Developer Program Enrollment Pending for 2+ Weeks, No Response from Support
Hello, My Apple Developer Program enrollment has been stuck on Pending for over two weeks with no communication from Apple. Details: Apple ID: inquirytpv [at] gmail [dot] com Enrollment type: Individual Location: Japan What I have confirmed: Two-factor authentication is enabled Apple ID name matches my legal ID exactly No pending agreements or verification requests in the portal No emails in spam/junk requesting additional action I have a completed macOS application ready for App Store submission. This pending status is the only thing blocking my launch. I have also tried contacting support via the Contact Us page but have not received a response. Could someone please review my enrollment or let me know if anything additional is needed? Thank you.
1
0
83
1w
Reply to A few issues with the iPhone Photos app
(part 2 of 2) — continuing from my response above. The following performance considerations and progressive-loading techniques apply to both the SwiftUI path and the UIKit path described in part 1. PhotoKit performance tips (apply to both paths) A few details from the PHCachingImageManager and PHImageManager header comments that are easy to miss and matter for smoothness: Use PHImageRequestOptionsDeliveryModeOpportunistic (the default for async requests) — your result handler may be called multiple times: first with a fast, lower-quality result, then with the final high-quality image as it becomes available. This is what lets the grid feel instant even while the real thumbnails are still being prepared. From the header: client may get several image results when the call is asynchronous. Match your caching options exactly to your request options. From the startCachingImagesForAssets header comment: The options values shall exactly match the options values used in loading methods. If your targ
Topic: App & System Services SubTopic: General Tags:
1w
Reply to A few issues with the iPhone Photos app
Thanks for the positive observation about the Photos app's grid zoom — it is genuinely smooth, and wanting to replicate that in your own app is a reasonable aspiration. I spent some cycles putting together the following summary of APIs you may wish to explore pursuing this goal. A framing note before getting to the substance: I can't share the specifics of how Apple's Photos app is implemented internally, since that's not something DTS can detail. What I can do is point you to the public APIs and techniques that let you build similar grid-zoom behavior in your own app. The good news is that the public surface includes a class for the interpolated-zoom effect you're after. The SwiftUI path For a photo-library-backed grid with smooth pinch-to-zoom in SwiftUI, the building blocks are: LazyVGrid for the grid container (iOS 14 or later). MagnifyGesture (iOS 17 or later) for pinch input. MagnifyGesture replaced the now-deprecated MagnificationGesture; the gesture's value gives you the magnification factor to drive
Topic: App & System Services SubTopic: General Tags:
6d
Reply to Cannot create MusicKit key — "There are no identifiers available that can be associated with the key"
Thanks for the detailed report. The symptom you're describing — App ID with MusicKit capability shows as enabled, but the Media Services key creation says no identifiers available — is a clear sign that the Developer Portal has two different identifier paths for MusicKit, and the path you took isn't the one the Media Services key flow uses. The two paths: App ID with MusicKit capability — for native iOS/macOS apps that link the MusicKit framework on-device. The App ID enables MusicKit usage for the app build chain. Documented on the MusicKit Services help page. Media ID — for server-side use of the Apple Music REST API via developer tokens. This is the identifier the Media Services key picker requires. Documented on the Create a media identifier and private key help page. Your server-to-server use case (developer token for catalog search, charts, artist endpoints) is the Media ID path. The fix: Go to Certificates, Identifiers & Profiles → Identifiers → click the (+) button Select Media I
Topic: Media Technologies SubTopic: General Tags:
1w
Reply to Xcode 26 RC unable to compile asset catalogs on CI
Adding a data point that should help narrow this down. I'm hitting the same nil-objects assertion described in this thread -[IBICAbstractPlatformAdapter selectCatalogIconComposerItemsFromCollection:...] on Xcode 26.5 (17F42), macOS 26.5 (25F71). Two findings from local testing: The crash is content-independent. I tested 13 .icon variants: bare {} icon.json with no Assets/, empty groups: [], single layer with no glass, sRGB instead of display-p3, watchOS removed, --platform macosx instead of iphoneos, etc. All 13 produced the identical backtrace. Standalone repro (no project required): mkdir /tmp/foo.icon && echo '{}' > /tmp/foo.icon/icon.json mkdir -p /tmp/out xcrun actool /tmp/foo.icon --compile /tmp/out --platform iphoneos --app-icon foo --output-partial-info-plist /tmp/p.plist --output-format human-readable-text The crash fires before actool parses the icon content. The mere presence of a .icon directory as input is enough. The regression was introduced after Xcode 26.4.1. I side-instal
1w
Xcode 26 RC unable to compile asset catalogs on CI
This started with Xcode 26 beta 7, however it has continued to occur with the release candidate. Whenever I try to compile our asset catalog + icon composer icon for our AppKit/SwiftUI-based macOS app, actool fails with the following exception: *** Terminating app due to uncaught exception 'IBPlatformToolFailureException', reason: 'The tool closed the connection (AssetCatalogAgent-AssetRuntime) Last command: _ON_QUEUE_sendMessage:toChannelReturningError:during: Backtrace of last command: 0 -[IBAbstractPlatformToolProxy _ON_QUEUE_sendMessage:toChannelReturningError:during:] (in IDEInterfaceBuilderKit) 1 __74-[IBAbstractPlatformToolProxy sendMessage:toChannelReturningError:during:]_block_invoke (in IDEInterfaceBuilderKit) 2 _dispatch_client_callout (in libdispatch.dylib) 3 _dispatch_lane_barrier_sync_invoke_and_complete (in libdispatch.dylib) 4 DVTDispatchSync (in DVTFoundation) 5 -[IBAbstractPlatformToolProxy sendMessage:toChannelReturningError:during:] (in IDEInterfaceBuilderKit) 6 -[AssetCatalogRemo
5
0
522
1w
watchOS Motion & Fitness authorization kills foreground iOS companion app with SIGKILL 9
We are seeing a reproducible process termination involving a companion watchOS app and its paired iOS companion app when Motion & Fitness authorization is requested from the watchOS app. Context: iOS app bundle identifier: com.alpha.golfbird watchOS app bundle identifier: com.alpha.golfbird.watchkitapp The watchOS app has WKCompanionAppBundleIdentifier set to the iOS app bundle identifier. Both the iOS app and the watchOS app include NSMotionUsageDescription in their Info.plist files. The watchOS app uses CMAltimeter to read barometric altitude changes for slope-adjusted golf distance calculations. The authorization flow checks CMAltimeter.authorizationStatus(). If the status is notDetermined, it uses CMMotionActivityManager.queryActivityStarting(from:to:to:) before starting CMAltimeter updates, following the known iOS 17.4+ Core Motion authorization behavior. Observed behavior: Install or launch the watchOS companion app for the first time. Open the paired iOS companion app and keep it in the foreground.
1
0
60
1w
CKQuerySubscription on public database failing with BAD_REQUEST in Production — distinct from iOS 26.4 silent-push regression
Hello, I'm hitting a persistent CKQuerySubscription save failure on the public database in my Production CloudKit container. I want to flag this is NOT the iOS 26.4 silent-push regression resolved in 26.4.1 (I've confirmed it manifests differently and on devices that predate that bug). App: Win 10 Min (com.luiz.PandaApp) Container: iCloud.com.luiz.PandaApp Current shipping version: 3.2.1 build 420 (approved 2026-05-19) Public database THE ERROR (captured from CKError.userInfo) CKErrorCode 12 (badRequest) CKInternalErrorDomain code 2006 (BadSyntax) ServerErrorDescription: attempting to create a subscription in a production container Execution time per failed attempt: 45-90ms (gateway-level rejection, not data validation). CODE let subscription = CKQuerySubscription( recordType: GuardianRequest, predicate: NSPredicate(format: guardianRecordName == %@, me), subscriptionID: guardian-incoming-(me), options: [.firesOnRecordCreation] ) let info = CKSubscription.NotificationInfo() info.shouldSendCon
4
0
203
1w
Reply to VNDocumentCameraViewController — Tick/Done Button Becomes Unresponsive After Scanning
Thanks for the precise reproducer — pinning the failure to tap before thumbnail appears, confirming that waiting for the thumbnail makes the tap work, and identifying that the delegate callback never fires in the failing case characterize the timing race. Looking at the public surface of VNDocumentCameraViewControllerDelegate (https://developer.apple.com/documentation/visionkit/vndocumentcameraviewcontrollerdelegate), the delegate has exactly three callbacks: documentCameraViewController(_:didFinishWith:) — successful scan completion documentCameraViewControllerDidCancel(_:) — cancellation documentCameraViewController(_:didFailWithError:) — scan failed or capture unavailable There's no intermediate-state callback (no scan captured but still processing, no ready to commit). The VNDocumentCameraViewController class itself exposes only delegate and the class property supported — no observable property that would signal when the internal processing pipeline has finished. So your reading of the public API is corre
Topic: UI Frameworks SubTopic: UIKit Tags:
1w
Reply to CarPlay: CPListItem.image degrades to placeholder glyph mid-session, only iPhone reboot recovers — FB22828125
Thank you, yes that FB was submitted earlier today. Two new pieces of data from a tester conversation today that I wanted to put on the record here, because they suggest the asset-accumulation theory may not be the whole story. 1. Cliff transition, not gradual degradation. I just spoke with one customer and he described the failure as one second the screen was fine, the next it was gray boxes. Not a slow boil where one icon becomes the placeholder, then a few more, then most. Sudden onset, every visual at once. 2. Both CPListItem icons and CPListImageRowItemRowElement images fail. I have several list-row icons (connection status, adapter status) and the row-element images on my Driving and Charging tabs (which are CPListTemplates built with CPListImageRowItem rows). The CPListItem rasterized SF-symbol icons are quasi-static. They're gated behind state-change snapshots and only re-rasterized on actual state transitions (connectionDisplay returning a different (symbol, tint) pair, or the adapt
Topic: UI Frameworks SubTopic: General Tags:
1w
Reply to Universal Links: Apple CDN returns SWCERR00301 Timeout while file is publicly available
Thanks for the post. Looks like you do not provide me a link to your AASA so I can check the error. If you like to discuss this privately. I'd like you to submit a code-level support request so we can discuss this further privately. When you create the request, indicate that you were referred by Albert Pascual at Apple and make sure to include a link to this thread. Thanks Albert
  Worldwide Developer Relations.
Topic: App & System Services SubTopic: General Tags:
1w
Reply to CKQuerySubscription on public database failing with BAD_REQUEST in Production — distinct from iOS 26.4 silent-push regression
Quick follow-up on point #2 (Security Roles): checked Schema → Security Roles. GuardianRequest and GuardianResponse grant Read via _world, Create via _icloud, Write via _creator — a standard public-DB config. The Read permission query subscriptions need is present, so Security Roles don't appear to be the cause.
Topic: App & System Services SubTopic: iCloud Tags:
1w
Reply to App Transfer Impact on Universal Linking/AASA
Thanks for your new post. I thought I have covered those scenarios on my previous post, I guess I missed something. I would recommend you to look at the documentation and see how AASA files works and how you register the different appIDs do that will give you the knowledge that the most important is to have multiple AppID into the AASA file so you can have 2 apps that will use a unique AASA file. Because the App Store is still distributing that original binary, any brand new user downloading the app for the first time is installing an app signed with the original Team ID. When iOS installs the app and fetches the Apple App Site Association (AASA) file from your server, it will be looking for a match with the original. As long as your AASA file still includes the original and new App ID, Universal Links will continue to function completely normally for these new users during the interim period. This exact behavior is why it is highly recommended to host an AASA file that contains both the original and
Topic: App & System Services SubTopic: General Tags:
1w
Developer Subscription enrollment not completing.
Hello guys. It's been 2 weeks since I paid for my developer account and I haven't received access to the developer tools yet. I finished all the process and still nothing, the money has also been charged from my bank account. Also I contacted https://developer.apple.com/contact/ but I haven't received any answer from them. I don't know how to proceed.
Replies
1
Boosts
0
Views
79
Activity
6d
Apple Developer Program Enrollment Pending for 2+ Weeks, No Response from Support
Hello, My Apple Developer Program enrollment has been stuck on Pending for over two weeks with no communication from Apple. Details: Apple ID: inquirytpv [at] gmail [dot] com Enrollment type: Individual Location: Japan What I have confirmed: Two-factor authentication is enabled Apple ID name matches my legal ID exactly No pending agreements or verification requests in the portal No emails in spam/junk requesting additional action I have a completed macOS application ready for App Store submission. This pending status is the only thing blocking my launch. I have also tried contacting support via the Contact Us page but have not received a response. Could someone please review my enrollment or let me know if anything additional is needed? Thank you.
Replies
1
Boosts
0
Views
83
Activity
1w
Reply to A few issues with the iPhone Photos app
(part 2 of 2) — continuing from my response above. The following performance considerations and progressive-loading techniques apply to both the SwiftUI path and the UIKit path described in part 1. PhotoKit performance tips (apply to both paths) A few details from the PHCachingImageManager and PHImageManager header comments that are easy to miss and matter for smoothness: Use PHImageRequestOptionsDeliveryModeOpportunistic (the default for async requests) — your result handler may be called multiple times: first with a fast, lower-quality result, then with the final high-quality image as it becomes available. This is what lets the grid feel instant even while the real thumbnails are still being prepared. From the header: client may get several image results when the call is asynchronous. Match your caching options exactly to your request options. From the startCachingImagesForAssets header comment: The options values shall exactly match the options values used in loading methods. If your targ
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
1w
Reply to A few issues with the iPhone Photos app
Thanks for the positive observation about the Photos app's grid zoom — it is genuinely smooth, and wanting to replicate that in your own app is a reasonable aspiration. I spent some cycles putting together the following summary of APIs you may wish to explore pursuing this goal. A framing note before getting to the substance: I can't share the specifics of how Apple's Photos app is implemented internally, since that's not something DTS can detail. What I can do is point you to the public APIs and techniques that let you build similar grid-zoom behavior in your own app. The good news is that the public surface includes a class for the interpolated-zoom effect you're after. The SwiftUI path For a photo-library-backed grid with smooth pinch-to-zoom in SwiftUI, the building blocks are: LazyVGrid for the grid container (iOS 14 or later). MagnifyGesture (iOS 17 or later) for pinch input. MagnifyGesture replaced the now-deprecated MagnificationGesture; the gesture's value gives you the magnification factor to drive
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
6d
Reply to Cannot create MusicKit key — "There are no identifiers available that can be associated with the key"
Thanks for the detailed report. The symptom you're describing — App ID with MusicKit capability shows as enabled, but the Media Services key creation says no identifiers available — is a clear sign that the Developer Portal has two different identifier paths for MusicKit, and the path you took isn't the one the Media Services key flow uses. The two paths: App ID with MusicKit capability — for native iOS/macOS apps that link the MusicKit framework on-device. The App ID enables MusicKit usage for the app build chain. Documented on the MusicKit Services help page. Media ID — for server-side use of the Apple Music REST API via developer tokens. This is the identifier the Media Services key picker requires. Documented on the Create a media identifier and private key help page. Your server-to-server use case (developer token for catalog search, charts, artist endpoints) is the Media ID path. The fix: Go to Certificates, Identifiers & Profiles → Identifiers → click the (+) button Select Media I
Topic: Media Technologies SubTopic: General Tags:
Replies
Boosts
Views
Activity
1w
Reply to Xcode 26 RC unable to compile asset catalogs on CI
Adding a data point that should help narrow this down. I'm hitting the same nil-objects assertion described in this thread -[IBICAbstractPlatformAdapter selectCatalogIconComposerItemsFromCollection:...] on Xcode 26.5 (17F42), macOS 26.5 (25F71). Two findings from local testing: The crash is content-independent. I tested 13 .icon variants: bare {} icon.json with no Assets/, empty groups: [], single layer with no glass, sRGB instead of display-p3, watchOS removed, --platform macosx instead of iphoneos, etc. All 13 produced the identical backtrace. Standalone repro (no project required): mkdir /tmp/foo.icon && echo '{}' > /tmp/foo.icon/icon.json mkdir -p /tmp/out xcrun actool /tmp/foo.icon --compile /tmp/out --platform iphoneos --app-icon foo --output-partial-info-plist /tmp/p.plist --output-format human-readable-text The crash fires before actool parses the icon content. The mere presence of a .icon directory as input is enough. The regression was introduced after Xcode 26.4.1. I side-instal
Replies
Boosts
Views
Activity
1w
Xcode 26 RC unable to compile asset catalogs on CI
This started with Xcode 26 beta 7, however it has continued to occur with the release candidate. Whenever I try to compile our asset catalog + icon composer icon for our AppKit/SwiftUI-based macOS app, actool fails with the following exception: *** Terminating app due to uncaught exception 'IBPlatformToolFailureException', reason: 'The tool closed the connection (AssetCatalogAgent-AssetRuntime) Last command: _ON_QUEUE_sendMessage:toChannelReturningError:during: Backtrace of last command: 0 -[IBAbstractPlatformToolProxy _ON_QUEUE_sendMessage:toChannelReturningError:during:] (in IDEInterfaceBuilderKit) 1 __74-[IBAbstractPlatformToolProxy sendMessage:toChannelReturningError:during:]_block_invoke (in IDEInterfaceBuilderKit) 2 _dispatch_client_callout (in libdispatch.dylib) 3 _dispatch_lane_barrier_sync_invoke_and_complete (in libdispatch.dylib) 4 DVTDispatchSync (in DVTFoundation) 5 -[IBAbstractPlatformToolProxy sendMessage:toChannelReturningError:during:] (in IDEInterfaceBuilderKit) 6 -[AssetCatalogRemo
Replies
5
Boosts
0
Views
522
Activity
1w
watchOS Motion & Fitness authorization kills foreground iOS companion app with SIGKILL 9
We are seeing a reproducible process termination involving a companion watchOS app and its paired iOS companion app when Motion & Fitness authorization is requested from the watchOS app. Context: iOS app bundle identifier: com.alpha.golfbird watchOS app bundle identifier: com.alpha.golfbird.watchkitapp The watchOS app has WKCompanionAppBundleIdentifier set to the iOS app bundle identifier. Both the iOS app and the watchOS app include NSMotionUsageDescription in their Info.plist files. The watchOS app uses CMAltimeter to read barometric altitude changes for slope-adjusted golf distance calculations. The authorization flow checks CMAltimeter.authorizationStatus(). If the status is notDetermined, it uses CMMotionActivityManager.queryActivityStarting(from:to:to:) before starting CMAltimeter updates, following the known iOS 17.4+ Core Motion authorization behavior. Observed behavior: Install or launch the watchOS companion app for the first time. Open the paired iOS companion app and keep it in the foreground.
Replies
1
Boosts
0
Views
60
Activity
1w
App stuck in "Waiting for Review" for 2 weeks
Hi, My app (6766506951) has been in review for two weeks with no status update. I already emailed the App Review team and submitted an expedited review request last week, but I haven’t received any response and the status is still “Waiting for Review.” I’m not sure what else I should do at this point. I would really appreciate your help.
Replies
1
Boosts
0
Views
77
Activity
1w
CKQuerySubscription on public database failing with BAD_REQUEST in Production — distinct from iOS 26.4 silent-push regression
Hello, I'm hitting a persistent CKQuerySubscription save failure on the public database in my Production CloudKit container. I want to flag this is NOT the iOS 26.4 silent-push regression resolved in 26.4.1 (I've confirmed it manifests differently and on devices that predate that bug). App: Win 10 Min (com.luiz.PandaApp) Container: iCloud.com.luiz.PandaApp Current shipping version: 3.2.1 build 420 (approved 2026-05-19) Public database THE ERROR (captured from CKError.userInfo) CKErrorCode 12 (badRequest) CKInternalErrorDomain code 2006 (BadSyntax) ServerErrorDescription: attempting to create a subscription in a production container Execution time per failed attempt: 45-90ms (gateway-level rejection, not data validation). CODE let subscription = CKQuerySubscription( recordType: GuardianRequest, predicate: NSPredicate(format: guardianRecordName == %@, me), subscriptionID: guardian-incoming-(me), options: [.firesOnRecordCreation] ) let info = CKSubscription.NotificationInfo() info.shouldSendCon
Replies
4
Boosts
0
Views
203
Activity
1w
Reply to VNDocumentCameraViewController — Tick/Done Button Becomes Unresponsive After Scanning
Thanks for the precise reproducer — pinning the failure to tap before thumbnail appears, confirming that waiting for the thumbnail makes the tap work, and identifying that the delegate callback never fires in the failing case characterize the timing race. Looking at the public surface of VNDocumentCameraViewControllerDelegate (https://developer.apple.com/documentation/visionkit/vndocumentcameraviewcontrollerdelegate), the delegate has exactly three callbacks: documentCameraViewController(_:didFinishWith:) — successful scan completion documentCameraViewControllerDidCancel(_:) — cancellation documentCameraViewController(_:didFailWithError:) — scan failed or capture unavailable There's no intermediate-state callback (no scan captured but still processing, no ready to commit). The VNDocumentCameraViewController class itself exposes only delegate and the class property supported — no observable property that would signal when the internal processing pipeline has finished. So your reading of the public API is corre
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
1w
Reply to CarPlay: CPListItem.image degrades to placeholder glyph mid-session, only iPhone reboot recovers — FB22828125
Thank you, yes that FB was submitted earlier today. Two new pieces of data from a tester conversation today that I wanted to put on the record here, because they suggest the asset-accumulation theory may not be the whole story. 1. Cliff transition, not gradual degradation. I just spoke with one customer and he described the failure as one second the screen was fine, the next it was gray boxes. Not a slow boil where one icon becomes the placeholder, then a few more, then most. Sudden onset, every visual at once. 2. Both CPListItem icons and CPListImageRowItemRowElement images fail. I have several list-row icons (connection status, adapter status) and the row-element images on my Driving and Charging tabs (which are CPListTemplates built with CPListImageRowItem rows). The CPListItem rasterized SF-symbol icons are quasi-static. They're gated behind state-change snapshots and only re-rasterized on actual state transitions (connectionDisplay returning a different (symbol, tint) pair, or the adapt
Topic: UI Frameworks SubTopic: General Tags:
Replies
Boosts
Views
Activity
1w
Reply to Universal Links: Apple CDN returns SWCERR00301 Timeout while file is publicly available
Thanks for the post. Looks like you do not provide me a link to your AASA so I can check the error. If you like to discuss this privately. I'd like you to submit a code-level support request so we can discuss this further privately. When you create the request, indicate that you were referred by Albert Pascual at Apple and make sure to include a link to this thread. Thanks Albert
  Worldwide Developer Relations.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
1w
Reply to CKQuerySubscription on public database failing with BAD_REQUEST in Production — distinct from iOS 26.4 silent-push regression
Quick follow-up on point #2 (Security Roles): checked Schema → Security Roles. GuardianRequest and GuardianResponse grant Read via _world, Create via _icloud, Write via _creator — a standard public-DB config. The Read permission query subscriptions need is present, so Security Roles don't appear to be the cause.
Topic: App & System Services SubTopic: iCloud Tags:
Replies
Boosts
Views
Activity
1w
Reply to App Transfer Impact on Universal Linking/AASA
Thanks for your new post. I thought I have covered those scenarios on my previous post, I guess I missed something. I would recommend you to look at the documentation and see how AASA files works and how you register the different appIDs do that will give you the knowledge that the most important is to have multiple AppID into the AASA file so you can have 2 apps that will use a unique AASA file. Because the App Store is still distributing that original binary, any brand new user downloading the app for the first time is installing an app signed with the original Team ID. When iOS installs the app and fetches the Apple App Site Association (AASA) file from your server, it will be looking for a match with the original. As long as your AASA file still includes the original and new App ID, Universal Links will continue to function completely normally for these new users during the interim period. This exact behavior is why it is highly recommended to host an AASA file that contains both the original and
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
1w