Search results for

“show when run”

115,110 results found

Post

Replies

Boosts

Views

Activity

Reply to autologin required inconsistent for virtualization
I'm using SSH into the host itself to try to use virtualization tools to run macOS VMs. OK. So lemme see if I understand this correctly: You have a host Mac. And a VM product that you can run as a command-line tool. You’ve configured that product to run a Mac guest. You SSH into that Mac to run your command-line tool. You’re testing two configurations. In the first, the host is configured to autologin to the GUI. In that case you’re able to consistently start the VM. In the second case… Actually, I’m not sure about this. Is the second case, do you: Manually log in to the host GUI, and then SSH in and run your test? Or not log in to the GUI at all, and then SSH in and run your test? ps It’s better to reply as a reply, rather than in the comments; see Quinn’s Top Ten DevForums Tips for this and other titbits. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
2w
Reply to Keychain errSecItemNotFound
[quote='884502022, iceboy, /thread/822626?answerId=884502022#884502022, /profile/iceboy'] If I do not set kSecAttrAccount right now, is it possible that I cannot read the keychain items correctly? [/quote] It’s hard to answer this because you’ve phrased it as a negative question. So, lemme rephrase it: If I’m using the data protection keychain (the default on iOS, something you have to opt in to on macOS), And I create a generic password keychain item without specifying kSecAttrAccount, Will I be able to access that item’s contents using SecItemCopyMatching? The answer to that is “Yes.” At the end of this post I’ve included some code that I used to test this. (Sorry it’s in Swift. I built this by cobbling together various existing bits of code that were all written in Swift, and I don’t have time today to convert them to Objective-C.) Having said that, my advice is that, when you creating a generic password item you always populate both kSecAttrService and kSecAttrAccount. If you don’t have a sensible value t
2w
Reply to App update showing status as "In review" for 17 days
@App Review My app (id 1611398578) is also stuck In Review for a week now after being approved. In App Store Connect -> App Review all the submissions show as Approved. I also got the email and notification that the submissions were approved a week ago (iOS and macOS). I contacted Apple Support and have two open case IDs (102865508515 and 102865870578). I was told the issue has been expedited but there are still no updates or replies from Apple at all and I am stuck and helpless. Any help would be greatly appreciated!
2w
App update showing status as "In review" for 17 days
Hello, Our application has been stuck in the In Review status for 17 days now, and we are looking for guidance on whether this is a known technical stall or an extended policy audit. The Issue: The app moved from Waiting for Review to In Review on March 25th. Since then, there has been no change in status and no messages in the Resolution Center. App ID: 6753868146 Thanks
6
0
206
2w
WebContent / GPU process crash on iPhone 15 (iOS 26.4); stable on iPad (iOS 26.4))
Summary Our app’s WKWebView triggers a WebContent / GPU process crash on iPhone 15 running iOS 26.4. The same flow works on iPad running iOS 26.4. Environment Failing: iPhone 15, iOS 26.4 Working: iPad, iOS 26.4 Web stack: WKWebView / WebKit (Safari & Web) What we see The WKWebView web process terminates; logs show WebProcess and GPU process exits, followed by RBS assertion failures and (in one WebContent process) repeated containermanagerd XPC invalidation. Expected Web content loads and remains stable like on iPad 26.4. Actual Web process crashes; page goes blank or WebView recovers only after reload. Logs 0x10715d518 - [pageProxyID=14, webPageID=15, PID=3629] WebPageProxy::dispatchProcessDidTerminate: reason=Crash 0x10715ce18 - [pageProxyID=22, webPageID=23, PID=3629] WebPageProxy::dispatchProcessDidTerminate: reason=Crash 0x1480f01e0 - GPUProcessProxy::didClose: 0x1480f01e0 - GPUProcessProxy::gpuProcessExited: reason=Crash 0x14808c640 - [PID=3633] WebProcessProxy::gpuProcess
Topic: Safari & Web SubTopic: General Tags:
2
0
281
2w
MIDI Drag-and-drop to Logic Pro via NSItemProvider
Logic Pro recently changed the way it accepts drag and drop. If the ItemProvider contains UTType.midi, then Logic Pro shows visual feedback for the drop operation, but when the item is dropped, nothing happens. In the past, drag-and-drop used to work. With today's version (Logic Pro 11.2), the only way I was able to successfully drop MIDI was to provide UTType.fileURL and no other data types. But that's not a viable solution; I need other data types to be included too. As a side note, I tested with Ableton Live 12 and it works with no issue. Is this a bug in Logic Pro? What ItemProvider structure does Logic Pro expect to correctly receive the MIDI data?
5
0
321
2w
App Store Connect crashes when configuring App Clip default experience (appClipDefaultExperience undefined)
Hi everyone, I am facing an issue while configuring an App Clip in App Store Connect, and I am unable to proceed due to a UI crash. Issue When I navigate to the App Clip section under my app version and click on the Subtitle field, the page immediately shows: “We can't process your request.” I am unable to enter any metadata for the App Clip experience. Console Error Previously, I observed the following error in the browser console: TypeError: Cannot read properties of undefined (reading 'appClipDefaultExperience.id')
16
0
601
2w
Reply to iOS: Issues getting beginBackgroundTaskWithName working reliably
SO, let me start by sorting out a few specific details: delegate is called via applicationWillTerminate which will then again almost immediately end in the app receiving a SIGKILL. applicationWillTerminate is not part of the normal delegate lifecycle. It's a relatively late “add-on that was recycled[1] to give apps SOME opportunity to save work if/when the user for quit them, so it's ONLY called if the app happens to be a wake at the point it's terminated by the user. Most critically, you cannot do ANY work after receiving it. That's because: Your app will call exit() immediately after returning from it. If you block “too long, then the system will kill you anyway. In practice, that means it needs to be handled as a separate edge case as you don't really have a lot of time or flexibility to do significant work. This is not your app being closed in the normal sense, it's actually your app being force-quit by the user. With that out of the way, the important case is actually applicationDidEnterBackground, so le
2w
Reply to iCloud Drive silent upload deadlock caused by stale HTTP/3 session in nsurlsessiond (FB22476701)
Thank you for providing such a detailed account of the iCloud Drive file upload deadlock issue on macOS 26.4.1. It sounds like you've done extensive troubleshooting and analysis to identify the root cause. Here's a summary of what you've discovered and some additional thoughts or suggestions that might help refine your approach or assist others experiencing similar issues: Summary of Findings: Root Cause: A stale HTTP/3 (QUIC) session in nsurlsessiond's BackgroundConnectionPool leads to a deadlock during file uploads. Behavior: Deadlock occurs specifically with HTTP/3, while HTTP/1.1 works without issues post-restart. Affects larger files (>100 KB); smaller files may occasionally succeed. Restarting both cloudd and nsurlsessiond resolves the issue temporarily by clearing the poisoned session. Reproduction: Consistent behavior observed across multiple tests with varied file sizes. Diagnosis: Log analysis can help identify occurrences using specific grep patterns. Recovery: A targeted kill command for user-l
2w
Reply to Keyboard greyed issue
Your screenshot seems to show that the keyboard window was disabled, which may happen when your app has multiple windows (UIWindow) with a higher window level (windowLevel). You can do a quick check if that is your case. Other than that, as my colleague mentioned, it will be very helpful if you can provide a minimal project that demonstrates the issue. Best, —— Ziqiao Chen  Worldwide Developer Relations.
Topic: UI Frameworks SubTopic: UIKit Tags:
2w
HomeKit support on MacOS
I am currently developing an app for MacOS that needs to control HomeKit devices like lights. However, it seems like MacOS is supported on the official documentation, but not when I try to create an app ID on developer.apple.com. On the link https://developer.apple.com/apple-home/, MacOS is clearly showed as supported for MacOS. But when I try to create an app ID, it shows that it is only compatible for iOS, VisionOS and WatchOS. Could this be clarified? Best regards, orangeidle25
2
0
190
2w
Reply to How to track an appeal?
Same here. There was no response from the created appeal and it does not show in the app review
Replies
Boosts
Views
Activity
2w
Reply to autologin required inconsistent for virtualization
I'm using SSH into the host itself to try to use virtualization tools to run macOS VMs. OK. So lemme see if I understand this correctly: You have a host Mac. And a VM product that you can run as a command-line tool. You’ve configured that product to run a Mac guest. You SSH into that Mac to run your command-line tool. You’re testing two configurations. In the first, the host is configured to autologin to the GUI. In that case you’re able to consistently start the VM. In the second case… Actually, I’m not sure about this. Is the second case, do you: Manually log in to the host GUI, and then SSH in and run your test? Or not log in to the GUI at all, and then SSH in and run your test? ps It’s better to reply as a reply, rather than in the comments; see Quinn’s Top Ten DevForums Tips for this and other titbits. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
2w
Reply to Keychain errSecItemNotFound
[quote='884502022, iceboy, /thread/822626?answerId=884502022#884502022, /profile/iceboy'] If I do not set kSecAttrAccount right now, is it possible that I cannot read the keychain items correctly? [/quote] It’s hard to answer this because you’ve phrased it as a negative question. So, lemme rephrase it: If I’m using the data protection keychain (the default on iOS, something you have to opt in to on macOS), And I create a generic password keychain item without specifying kSecAttrAccount, Will I be able to access that item’s contents using SecItemCopyMatching? The answer to that is “Yes.” At the end of this post I’ve included some code that I used to test this. (Sorry it’s in Swift. I built this by cobbling together various existing bits of code that were all written in Swift, and I don’t have time today to convert them to Objective-C.) Having said that, my advice is that, when you creating a generic password item you always populate both kSecAttrService and kSecAttrAccount. If you don’t have a sensible value t
Replies
Boosts
Views
Activity
2w
Reply to App update showing status as "In review" for 17 days
@App Review My app (id 1611398578) is also stuck In Review for a week now after being approved. In App Store Connect -> App Review all the submissions show as Approved. I also got the email and notification that the submissions were approved a week ago (iOS and macOS). I contacted Apple Support and have two open case IDs (102865508515 and 102865870578). I was told the issue has been expedited but there are still no updates or replies from Apple at all and I am stuck and helpless. Any help would be greatly appreciated!
Replies
Boosts
Views
Activity
2w
App update showing status as "In review" for 17 days
Hello, Our application has been stuck in the In Review status for 17 days now, and we are looking for guidance on whether this is a known technical stall or an extended policy audit. The Issue: The app moved from Waiting for Review to In Review on March 25th. Since then, there has been no change in status and no messages in the Resolution Center. App ID: 6753868146 Thanks
Replies
6
Boosts
0
Views
206
Activity
2w
WebContent / GPU process crash on iPhone 15 (iOS 26.4); stable on iPad (iOS 26.4))
Summary Our app’s WKWebView triggers a WebContent / GPU process crash on iPhone 15 running iOS 26.4. The same flow works on iPad running iOS 26.4. Environment Failing: iPhone 15, iOS 26.4 Working: iPad, iOS 26.4 Web stack: WKWebView / WebKit (Safari & Web) What we see The WKWebView web process terminates; logs show WebProcess and GPU process exits, followed by RBS assertion failures and (in one WebContent process) repeated containermanagerd XPC invalidation. Expected Web content loads and remains stable like on iPad 26.4. Actual Web process crashes; page goes blank or WebView recovers only after reload. Logs 0x10715d518 - [pageProxyID=14, webPageID=15, PID=3629] WebPageProxy::dispatchProcessDidTerminate: reason=Crash 0x10715ce18 - [pageProxyID=22, webPageID=23, PID=3629] WebPageProxy::dispatchProcessDidTerminate: reason=Crash 0x1480f01e0 - GPUProcessProxy::didClose: 0x1480f01e0 - GPUProcessProxy::gpuProcessExited: reason=Crash 0x14808c640 - [PID=3633] WebProcessProxy::gpuProcess
Topic: Safari & Web SubTopic: General Tags:
Replies
2
Boosts
0
Views
281
Activity
2w
MIDI Drag-and-drop to Logic Pro via NSItemProvider
Logic Pro recently changed the way it accepts drag and drop. If the ItemProvider contains UTType.midi, then Logic Pro shows visual feedback for the drop operation, but when the item is dropped, nothing happens. In the past, drag-and-drop used to work. With today's version (Logic Pro 11.2), the only way I was able to successfully drop MIDI was to provide UTType.fileURL and no other data types. But that's not a viable solution; I need other data types to be included too. As a side note, I tested with Ableton Live 12 and it works with no issue. Is this a bug in Logic Pro? What ItemProvider structure does Logic Pro expect to correctly receive the MIDI data?
Replies
5
Boosts
0
Views
321
Activity
2w
App Store Connect crashes when configuring App Clip default experience (appClipDefaultExperience undefined)
Hi everyone, I am facing an issue while configuring an App Clip in App Store Connect, and I am unable to proceed due to a UI crash. Issue When I navigate to the App Clip section under my app version and click on the Subtitle field, the page immediately shows: “We can't process your request.” I am unable to enter any metadata for the App Clip experience. Console Error Previously, I observed the following error in the browser console: TypeError: Cannot read properties of undefined (reading 'appClipDefaultExperience.id')
Replies
16
Boosts
0
Views
601
Activity
2w
Reply to Flutter iOS Project: WidgetKit Extension Not Embedding / Build Cycle Error
Hello, I’ve resolved the issue—I had overlooked a crucial step. In the Build Phases section, I hadn’t added “Embed Foundation Extensions” to the Run Script. Once I did that, the problem was solved.
Replies
Boosts
Views
Activity
2w
NEURLFilter Not Blocking URLs
I've been able to run this sample project with the PIRServer. But the urls are still not blocked. https://developer.apple.com/documentation/networkextension/filtering-traffic-by-url https://github.com/apple/pir-service-example I got this on the log Received filter status change:
Replies
2
Boosts
0
Views
162
Activity
2w
Reply to iOS: Issues getting beginBackgroundTaskWithName working reliably
SO, let me start by sorting out a few specific details: delegate is called via applicationWillTerminate which will then again almost immediately end in the app receiving a SIGKILL. applicationWillTerminate is not part of the normal delegate lifecycle. It's a relatively late “add-on that was recycled[1] to give apps SOME opportunity to save work if/when the user for quit them, so it's ONLY called if the app happens to be a wake at the point it's terminated by the user. Most critically, you cannot do ANY work after receiving it. That's because: Your app will call exit() immediately after returning from it. If you block “too long, then the system will kill you anyway. In practice, that means it needs to be handled as a separate edge case as you don't really have a lot of time or flexibility to do significant work. This is not your app being closed in the normal sense, it's actually your app being force-quit by the user. With that out of the way, the important case is actually applicationDidEnterBackground, so le
Replies
Boosts
Views
Activity
2w
Update membership details
I can't seem to find any way to update my now legacy details since moving country. My general apple account has changed just fine but my developer account still shows as UK and no way to update. Any ideas?
Replies
1
Boosts
0
Views
55
Activity
2w
Reply to iCloud Drive silent upload deadlock caused by stale HTTP/3 session in nsurlsessiond (FB22476701)
Thank you for providing such a detailed account of the iCloud Drive file upload deadlock issue on macOS 26.4.1. It sounds like you've done extensive troubleshooting and analysis to identify the root cause. Here's a summary of what you've discovered and some additional thoughts or suggestions that might help refine your approach or assist others experiencing similar issues: Summary of Findings: Root Cause: A stale HTTP/3 (QUIC) session in nsurlsessiond's BackgroundConnectionPool leads to a deadlock during file uploads. Behavior: Deadlock occurs specifically with HTTP/3, while HTTP/1.1 works without issues post-restart. Affects larger files (>100 KB); smaller files may occasionally succeed. Restarting both cloudd and nsurlsessiond resolves the issue temporarily by clearing the poisoned session. Reproduction: Consistent behavior observed across multiple tests with varied file sizes. Diagnosis: Log analysis can help identify occurrences using specific grep patterns. Recovery: A targeted kill command for user-l
Replies
Boosts
Views
Activity
2w
Reply to Keyboard greyed issue
Your screenshot seems to show that the keyboard window was disabled, which may happen when your app has multiple windows (UIWindow) with a higher window level (windowLevel). You can do a quick check if that is your case. Other than that, as my colleague mentioned, it will be very helpful if you can provide a minimal project that demonstrates the issue. Best, —— Ziqiao Chen  Worldwide Developer Relations.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
2w
HomeKit support on MacOS
I am currently developing an app for MacOS that needs to control HomeKit devices like lights. However, it seems like MacOS is supported on the official documentation, but not when I try to create an app ID on developer.apple.com. On the link https://developer.apple.com/apple-home/, MacOS is clearly showed as supported for MacOS. But when I try to create an app ID, it shows that it is only compatible for iOS, VisionOS and WatchOS. Could this be clarified? Best regards, orangeidle25
Replies
2
Boosts
0
Views
190
Activity
2w