Search results for

“DTiPhoneSimulatorErrorDomain Code 2”

162,370 results found

Post

Replies

Boosts

Views

Activity

Reply to Explicit dynamic loading of a framework in macOS - recommended approach?
[quote='888157022, GangOrca, /thread/820251?answerId=888157022#888157022, /profile/GangOrca'] the path to the internal MachO binary is required [/quote] Right. I recommend that you pass an absolute path to dlopen, so you’ll need platform-specific code to generate that path. How you generate that path depends on how you package your code. In both cases you need to get your app’s framework directory. To do that: Get the app’s bundle bundle using Bundle.main. Then get the privateFrameworksURL property from that. From there, you have two choices: If you package the code as a dynamic library (.dylib) you can just append the library file name and away you go. If you package the code as a framework, you have to create a bundle from that framework, using the init(url:) initialiser, and then get the main executable URL from that using the executableURL property. For iOS you have to use the second option; we only support standalone dynamic libraries on macOS. If you can’t us
Topic: App & System Services SubTopic: Core OS Tags:
1w
Reply to The callback is not triggered when the app is launched from a terminated state via the notification action
[quote='887853022, Madhuri_Ramapure, /thread/826318?answerId=887853022#887853022, /profile/Madhuri_Ramapure'] When an app is forcefully terminated, all background network tasks are cancelled [/quote] Correct. It’d be more accurate to say “tasks in a URLSession background session”, but the gist is right. I discuss this in some detail in Testing Background Session Code. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
1w
M5 Pro DCP bandwidth allocation: asymmetric 27,400/13,700 Mbps split between dispext0/dispext1 on dual 5K configuration
Filing this for engineering visibility and to ask whether the observed behavior matches expected M5 Pro DCP architecture. FB22701284 contains full sysdiagnose and supporting data. Hardware Configuration MacBook Pro 16-inch (Mac17,8) M5 Pro chip, 18-core CPU 64GB unified memory (highest M5 Pro memory tier) 1TB SSD macOS Tahoe 26.4.1 (build 25E253) AppleDCP-1041.100.97~429-t605xdcp.RELEASE Display Configuration Two identical LG UltraGear 27GM950B monitors: 27 Mini LED panels, native 5120x2880 DisplayPort 2.1 UHBR20 (80 Gbps capable) 165Hz native refresh, HDR-capable Connection topology (all third-party display software removed for clean test): Mac TB5 port 1 → Silkland DP80 USB-C cable (VESA-certified) → Monitor #1 USB-C input Mac TB5 port 2 → Silkland DP80 USB-C cable (VESA-certified) → Monitor #2 USB-C input DisplayLink Manager fully uninstalled No dock, no MST hub, no signal converters Apple Specification Context Per the MacBook Pro user guide, M5 Pro supports dual displays at 5K@1
9
0
217
1w
Reply to StatusCode 7000 "Team is not yet configured for notarization". It's been over five days, no resolution
[quote='888263022, DTS Engineer, /thread/824359?answerId=888263022#888263022'] And yet I’m telling you that I’ve personally seen them get resolved. Weird eh?[/quote] Hi Quinn, I posted (and you quoted) There’s never once been a post by anyone that their status code 7000 problem got resolved. Do you have a link to any post by anyone claiming that after they followed the official path that their status code problem was resolved? To be fair I didn't write There's never been second-hand anecdote by a forum mod with zero evidence provided that someone else's status code 7000 problem got resolved. You referenced Brad's thread and said you know it was fixed. Brad has been VERY vocal in his status code 7000 problem since February and even went so far as to blanket the internet last week (mid-May) with posts saying that he was still encountering the problem. Can you provide a hyperlink to this very vocal poster where he cites that Apple did fix the issue and he's now able to notariz
Topic: Code Signing SubTopic: Notarization Tags:
1w
Inexplicable Metal crash ever since iOS 26.5 beta 4
Hi all, I'm working on updating my audio visualizer app. I'm adding new visualizers based on Metal 4 compute shaders. They worked in iOS 26.4 and iOS 26.5 up until beta 3. However, after that, the visualizers started crashing the phone and forcing a restart. On the latest version of iOS 26.5, the crash is still there. I submitted feedback, but haven't heard anything back just yet. I was wondering if others have faced this same issue, and if there are any workarounds. Here is my repo if you want to look at the code (forgive me if it's sloppy, I'm quite new to graphics programming and Metal): https://github.com/aabagdi/VisualMan/tree/main Thank you!
4
0
1.2k
1w
Reply to StatusCode 7000 "Team is not yet configured for notarization". It's been over five days, no resolution
[quote='887858022, Spartan81, /thread/824359?answerId=887858022#887858022, /profile/Spartan81'] There’s never once been a post by anyone that their status code 7000 problem got resolved. [/quote] And yet I’m telling you that I’ve personally seen them get resolved. Weird eh? I believe there are a number of filters in play here, including: Some fraction of folks follow the standard DevPrograms path and the issue is resolved quickly. Some fraction of folks issue are unwilling to discuss the resolution in public. I’m not going to be drawn into speculation as to why that might be. Some fraction of folks simply forget to come back and close the loop [1]. I’m sorry I can’t help you with this but this isn’t an issue for DTS to resolve and, while I’m usually happy to wade into other team’s ponds, this specific issue has to be handled through official channels. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] For example, I happen to know
Topic: Code Signing SubTopic: Notarization Tags:
1w
Do loading multiple functions that share model weights multiply memory use?
Hi, I have a multifunction model where the functions share the same model weights, and for latency I have multiple functions loaded at the same time. According to what Codex found this multiplies RAM usage, so if the single model weights 2GB, loading two functions that share the underlying weights still doubles RAM usage to 4GB (seems that it is something like neural wired memory). Does anyone have any knowledge relating to this?
0
0
1.1k
1w
Reply to Team ID not matching my Newly registered Developer Account
Are you sure there are two different Team IDs involved here? A lot of questions like this are, in my experience, caused by folks mixing up their Team ID with one of the other 10-character identifiers that Apple uses. I have a post that explains that source of confusion: Code Signing Identifiers Explained Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
1w
SetFocusFilterIntent broken in macOS 26.5
Since the update to macOS 26.5, SetFocusFilterIntent is broken in two ways: When using a SetFocusFilterIntent where the user can select one AppEntity out of a list, the selection is broken. Instead of the selected item, the first or two items at the same time are highlighted. The perform method of the SetFocusFilterIntent is never called. On iOS there seems to be a strange fix when the focus filter doesn't work, just conform the focus filter to a LiveActivityIntent: struct FocusFilter: SetFocusFilterIntent, LiveActivityIntent No solution for macOS yet.
0
0
211
1w
Dictation / German – Bugs
Dictation in German has a couple of persistent bugs. Saying Anführungszeichen inserts punctuation AND writes out the word: When dictating the word „Anführungszeichen in German, the app both inserts quotation marks AND writes out the word literally. Expected: either insert the punctuation OR write the word – not both. Manual quotation mark followed by automatic blank key during dictation. Compound words incorrectly split into separate words: Compound words are either cohesive or hyphenated, the english spelling with two separate words is simply wrong!) Spaces incorrectly added around hyphens in compound words: German dictation adds spaces before and after hyphens. In German orthography, spaces around hyphens are only correct for em dashes (Gedankenstrich), never for regular hyphens in compound words.
1
0
905
1w
W-9 shown for single-member US LLC owned by a non-US individual — should be W-8BEN (disregarded entity)
Hello! I have a new organization-level Apple Developer account and I'm stuck on the Tax Forms step in App Store Connect (https://appstoreconnect.apple.com/business). The system is showing me U.S. Form W-9 as the only option, but in my case filling out a W-9 would be incorrect — and I'd appreciate guidance from anyone who has resolved this. My setup: I am a non-US individual (not a US citizen, not a US resident, never lived in the US). I am the sole owner of a single-member LLC registered in the US (set up via Firstbase specifically to distribute a mobile app). For US federal tax purposes, this LLC is a disregarded entity — it's not treated as a separate taxpayer from its owner. Why W-9 is not the correct form in my case: The IRS instructions for Form W-9 explicitly state: If the owner of the disregarded entity is a foreign person, the owner must complete an appropriate Form W-8 instead of a Form W-9. This is the case even if the foreign person has a U.S. TIN. Form W-9 also requires me to certify, under penalt
4
0
383
1w
Reply to Apple School Manager API - invalid_client error with correct JWT
RESOLVED — Posting what fixed it in case it helps others After a lot of debugging, the invalid_client error was caused by using Sign in with Apple (SIWA) endpoints instead of the Apple School Manager API endpoints. These are two completely separate OAuth systems that look very similar but are not interchangeable. Here is a direct comparison of what was wrong vs. what is correct: ❌ What I had (SIWA) ✅ What ASM API requires Token endpoint appleid.apple.com/auth/token account.apple.com/auth/oauth2/token JWT aud claim https://appleid.apple.com https://account.apple.com/auth/oauth2/v2/token JWT iss claim Organisation ID (55155430) API client ID (SCHOOLAPI.xxx) JWT sub claim Client ID (SCHOOLAPI.xxx) API client ID (SCHOOLAPI.xxx) — same as iss jti claim Not included Required — unique UUID per request client_id in request body Not included Required API base URL api.apple.com/v1 api-school.apple.com/v1 The working JWT payload looks like this: { iss: SCHOOLAPI.7c0c10a0-4d8a-4ef8-a2be-eda040b65c59, sub: SCHOOL
Topic: Business & Education SubTopic: General Tags:
1w
iOS26.4 WKWebView loadurl error -1005
We are seeing intermittent WKWebView main-frame navigation failures on iOS 26.4.x. The failure is reported through: webView:didFailProvisionalNavigation:withError: The error code is: NSURLErrorNetworkConnectionLost (-1005) The affected pages are normal HTTPS H5 pages loaded by WKWebView,。 From our client logs, the issue appears during provisional navigation, before the page finishes loading. In many cases, error.userInfo does not contain a useful description, and the log only shows: did fail provisional navigation, error code: -1005, description: nil We have also observed a high concentration of this error on iOS 26.4.x devices. The failures are intermittent and may recover after a retry, which makes us suspect that the underlying network connection may be lost during request processing or connection reuse. What we would like to know: Is there any known issue in iOS 26.4.x / WebKit / CFNetwork that could cause WKWebView provisional navigation to fail with NSURLErrorNetworkConnectionLost (-10
Topic: Safari & Web SubTopic: General
1
0
1.2k
1w
Reply to Explicit dynamic loading of a framework in macOS - recommended approach?
[quote='888157022, GangOrca, /thread/820251?answerId=888157022#888157022, /profile/GangOrca'] the path to the internal MachO binary is required [/quote] Right. I recommend that you pass an absolute path to dlopen, so you’ll need platform-specific code to generate that path. How you generate that path depends on how you package your code. In both cases you need to get your app’s framework directory. To do that: Get the app’s bundle bundle using Bundle.main. Then get the privateFrameworksURL property from that. From there, you have two choices: If you package the code as a dynamic library (.dylib) you can just append the library file name and away you go. If you package the code as a framework, you have to create a bundle from that framework, using the init(url:) initialiser, and then get the main executable URL from that using the executableURL property. For iOS you have to use the second option; we only support standalone dynamic libraries on macOS. If you can’t us
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
1w
Reply to The callback is not triggered when the app is launched from a terminated state via the notification action
[quote='887853022, Madhuri_Ramapure, /thread/826318?answerId=887853022#887853022, /profile/Madhuri_Ramapure'] When an app is forcefully terminated, all background network tasks are cancelled [/quote] Correct. It’d be more accurate to say “tasks in a URLSession background session”, but the gist is right. I discuss this in some detail in Testing Background Session Code. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
1w
M5 Pro DCP bandwidth allocation: asymmetric 27,400/13,700 Mbps split between dispext0/dispext1 on dual 5K configuration
Filing this for engineering visibility and to ask whether the observed behavior matches expected M5 Pro DCP architecture. FB22701284 contains full sysdiagnose and supporting data. Hardware Configuration MacBook Pro 16-inch (Mac17,8) M5 Pro chip, 18-core CPU 64GB unified memory (highest M5 Pro memory tier) 1TB SSD macOS Tahoe 26.4.1 (build 25E253) AppleDCP-1041.100.97~429-t605xdcp.RELEASE Display Configuration Two identical LG UltraGear 27GM950B monitors: 27 Mini LED panels, native 5120x2880 DisplayPort 2.1 UHBR20 (80 Gbps capable) 165Hz native refresh, HDR-capable Connection topology (all third-party display software removed for clean test): Mac TB5 port 1 → Silkland DP80 USB-C cable (VESA-certified) → Monitor #1 USB-C input Mac TB5 port 2 → Silkland DP80 USB-C cable (VESA-certified) → Monitor #2 USB-C input DisplayLink Manager fully uninstalled No dock, no MST hub, no signal converters Apple Specification Context Per the MacBook Pro user guide, M5 Pro supports dual displays at 5K@1
Replies
9
Boosts
0
Views
217
Activity
1w
Reply to StatusCode 7000 "Team is not yet configured for notarization". It's been over five days, no resolution
[quote='888263022, DTS Engineer, /thread/824359?answerId=888263022#888263022'] And yet I’m telling you that I’ve personally seen them get resolved. Weird eh?[/quote] Hi Quinn, I posted (and you quoted) There’s never once been a post by anyone that their status code 7000 problem got resolved. Do you have a link to any post by anyone claiming that after they followed the official path that their status code problem was resolved? To be fair I didn't write There's never been second-hand anecdote by a forum mod with zero evidence provided that someone else's status code 7000 problem got resolved. You referenced Brad's thread and said you know it was fixed. Brad has been VERY vocal in his status code 7000 problem since February and even went so far as to blanket the internet last week (mid-May) with posts saying that he was still encountering the problem. Can you provide a hyperlink to this very vocal poster where he cites that Apple did fix the issue and he's now able to notariz
Topic: Code Signing SubTopic: Notarization Tags:
Replies
Boosts
Views
Activity
1w
Inexplicable Metal crash ever since iOS 26.5 beta 4
Hi all, I'm working on updating my audio visualizer app. I'm adding new visualizers based on Metal 4 compute shaders. They worked in iOS 26.4 and iOS 26.5 up until beta 3. However, after that, the visualizers started crashing the phone and forcing a restart. On the latest version of iOS 26.5, the crash is still there. I submitted feedback, but haven't heard anything back just yet. I was wondering if others have faced this same issue, and if there are any workarounds. Here is my repo if you want to look at the code (forgive me if it's sloppy, I'm quite new to graphics programming and Metal): https://github.com/aabagdi/VisualMan/tree/main Thank you!
Replies
4
Boosts
0
Views
1.2k
Activity
1w
Reply to StatusCode 7000 "Team is not yet configured for notarization". It's been over five days, no resolution
[quote='887858022, Spartan81, /thread/824359?answerId=887858022#887858022, /profile/Spartan81'] There’s never once been a post by anyone that their status code 7000 problem got resolved. [/quote] And yet I’m telling you that I’ve personally seen them get resolved. Weird eh? I believe there are a number of filters in play here, including: Some fraction of folks follow the standard DevPrograms path and the issue is resolved quickly. Some fraction of folks issue are unwilling to discuss the resolution in public. I’m not going to be drawn into speculation as to why that might be. Some fraction of folks simply forget to come back and close the loop [1]. I’m sorry I can’t help you with this but this isn’t an issue for DTS to resolve and, while I’m usually happy to wade into other team’s ponds, this specific issue has to be handled through official channels. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] For example, I happen to know
Topic: Code Signing SubTopic: Notarization Tags:
Replies
Boosts
Views
Activity
1w
Do loading multiple functions that share model weights multiply memory use?
Hi, I have a multifunction model where the functions share the same model weights, and for latency I have multiple functions loaded at the same time. According to what Codex found this multiplies RAM usage, so if the single model weights 2GB, loading two functions that share the underlying weights still doubles RAM usage to 4GB (seems that it is something like neural wired memory). Does anyone have any knowledge relating to this?
Replies
0
Boosts
0
Views
1.1k
Activity
1w
Reply to Team ID not matching my Newly registered Developer Account
Are you sure there are two different Team IDs involved here? A lot of questions like this are, in my experience, caused by folks mixing up their Team ID with one of the other 10-character identifiers that Apple uses. I have a post that explains that source of confusion: Code Signing Identifiers Explained Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
1w
SetFocusFilterIntent broken in macOS 26.5
Since the update to macOS 26.5, SetFocusFilterIntent is broken in two ways: When using a SetFocusFilterIntent where the user can select one AppEntity out of a list, the selection is broken. Instead of the selected item, the first or two items at the same time are highlighted. The perform method of the SetFocusFilterIntent is never called. On iOS there seems to be a strange fix when the focus filter doesn't work, just conform the focus filter to a LiveActivityIntent: struct FocusFilter: SetFocusFilterIntent, LiveActivityIntent No solution for macOS yet.
Replies
0
Boosts
0
Views
211
Activity
1w
Dictation / German – Bugs
Dictation in German has a couple of persistent bugs. Saying Anführungszeichen inserts punctuation AND writes out the word: When dictating the word „Anführungszeichen in German, the app both inserts quotation marks AND writes out the word literally. Expected: either insert the punctuation OR write the word – not both. Manual quotation mark followed by automatic blank key during dictation. Compound words incorrectly split into separate words: Compound words are either cohesive or hyphenated, the english spelling with two separate words is simply wrong!) Spaces incorrectly added around hyphens in compound words: German dictation adds spaces before and after hyphens. In German orthography, spaces around hyphens are only correct for em dashes (Gedankenstrich), never for regular hyphens in compound words.
Replies
1
Boosts
0
Views
905
Activity
1w
W-9 shown for single-member US LLC owned by a non-US individual — should be W-8BEN (disregarded entity)
Hello! I have a new organization-level Apple Developer account and I'm stuck on the Tax Forms step in App Store Connect (https://appstoreconnect.apple.com/business). The system is showing me U.S. Form W-9 as the only option, but in my case filling out a W-9 would be incorrect — and I'd appreciate guidance from anyone who has resolved this. My setup: I am a non-US individual (not a US citizen, not a US resident, never lived in the US). I am the sole owner of a single-member LLC registered in the US (set up via Firstbase specifically to distribute a mobile app). For US federal tax purposes, this LLC is a disregarded entity — it's not treated as a separate taxpayer from its owner. Why W-9 is not the correct form in my case: The IRS instructions for Form W-9 explicitly state: If the owner of the disregarded entity is a foreign person, the owner must complete an appropriate Form W-8 instead of a Form W-9. This is the case even if the foreign person has a U.S. TIN. Form W-9 also requires me to certify, under penalt
Replies
4
Boosts
0
Views
383
Activity
1w
Appstoreconnect login OTP not sending
I haven’t been able to log in to my App Store Connect account for the last 2 days because the OTP SMS is not being delivered. When is this issue expected to be resolved?
Replies
0
Boosts
0
Views
176
Activity
1w
Reply to Apple School Manager API - invalid_client error with correct JWT
RESOLVED — Posting what fixed it in case it helps others After a lot of debugging, the invalid_client error was caused by using Sign in with Apple (SIWA) endpoints instead of the Apple School Manager API endpoints. These are two completely separate OAuth systems that look very similar but are not interchangeable. Here is a direct comparison of what was wrong vs. what is correct: ❌ What I had (SIWA) ✅ What ASM API requires Token endpoint appleid.apple.com/auth/token account.apple.com/auth/oauth2/token JWT aud claim https://appleid.apple.com https://account.apple.com/auth/oauth2/v2/token JWT iss claim Organisation ID (55155430) API client ID (SCHOOLAPI.xxx) JWT sub claim Client ID (SCHOOLAPI.xxx) API client ID (SCHOOLAPI.xxx) — same as iss jti claim Not included Required — unique UUID per request client_id in request body Not included Required API base URL api.apple.com/v1 api-school.apple.com/v1 The working JWT payload looks like this: { iss: SCHOOLAPI.7c0c10a0-4d8a-4ef8-a2be-eda040b65c59, sub: SCHOOL
Topic: Business & Education SubTopic: General Tags:
Replies
Boosts
Views
Activity
1w
iOS26.4 WKWebView loadurl error -1005
We are seeing intermittent WKWebView main-frame navigation failures on iOS 26.4.x. The failure is reported through: webView:didFailProvisionalNavigation:withError: The error code is: NSURLErrorNetworkConnectionLost (-1005) The affected pages are normal HTTPS H5 pages loaded by WKWebView,。 From our client logs, the issue appears during provisional navigation, before the page finishes loading. In many cases, error.userInfo does not contain a useful description, and the log only shows: did fail provisional navigation, error code: -1005, description: nil We have also observed a high concentration of this error on iOS 26.4.x devices. The failures are intermittent and may recover after a retry, which makes us suspect that the underlying network connection may be lost during request processing or connection reuse. What we would like to know: Is there any known issue in iOS 26.4.x / WebKit / CFNetwork that could cause WKWebView provisional navigation to fail with NSURLErrorNetworkConnectionLost (-10
Topic: Safari & Web SubTopic: General
Replies
1
Boosts
0
Views
1.2k
Activity
1w
Battery Service Peripheral - Not Allowed?
Hi! I'm trying to create an iOS peripheral service with UUID=180F which stands for standard GATT BAS. I'm getting the error: CBErrorDomain Code=8 The specified UUID is not allowed for this operation. Is this prohibited by the system?
Replies
1
Boosts
0
Views
170
Activity
1w