Search results for

“show when run”

115,119 results found

Post

Replies

Boosts

Views

Activity

UISwitch glass effect not visible when reloading UITableView
Hi Team I’m facing an issue with UISwitch inside a UITableViewCell on iOS 26. When the switch is toggled, I update my data and call tableView.reloadData(). Since both the switch animation and table view reload happen at the same time, the UISwitch does not show its glass effect properly (it looks flat/missing during the animation). If I delay the reload, the switch renders correctly. Is this a known issue? Is there a recommended way to handle this without affecting the switch’s visual appearance?
Topic: UI Frameworks SubTopic: UIKit
3
0
178
3w
Initial presentation of popover hangs when shown from a button in the toolbar
I have a simple reproducer here: struct ContentView: View { @State private var isOn = false @State private var isPresented = false var body: some View { NavigationStack { Color.blue .toolbar { ToolbarItem(placement: .topBarTrailing) { Button(Press here) { isPresented = true } .popover(isPresented: $isPresented) { Color.green .frame(idealWidth: 400, idealHeight: 500) .presentationCompactAdaptation(.popover) } } } } } } When I tap on the button in the toolbar you can see there is a hang then the popover shows. Then every time after there is no longer a hang so this seems like a bug. Any ideas? I'm using Xcode 26.3 and a iPad Pro 13-inch (M5) (26.4) simulator.
3
0
187
3w
Reply to Initial presentation of popover hangs when shown from a button in the toolbar
Hello @klinee101 This is interesting, thanks for filing the report. I'll make sure it has the correct eyes on it. Do you see the same issue with Menu ? When I run your code, the display times are the same as Menu, and is not nearly as long as what is shown in your gif. Generally updates are provided in Feedback Assistant, but I encourage you to test new releases as they come and update us here along the way.  Travis
Topic: UI Frameworks SubTopic: SwiftUI Tags:
3w
Developer Field in app store showing outdated name
A few months back I migrated my account from an Individual account to an Organisation account. Since then, I published an app to the appstore. Under Developer in the app store, it still shows my Individual Account name, not the Business name I have entered since. I did open a case to try and fix this on March 30th but havent received any response or update. In the meantime our business also got a new phone number so I decided to update account information and in the Notes section reference the issue with the Developer field again, but also havent received an update. Am I looking in the wrong place or contacting the wrong people? Any help would genuinely he lifesaving.
2
0
66
3w
App stuck in Waiting for Review
Hi everyone, I’m running into an issue with my app submission. It has been stuck in Waiting for Review for over a month now, and there has been no progress at all. I’ve already contacted support twice, but unfortunately haven’t received any response. Has anyone experienced something similar? Are there any ways to speed up the review process or escalate the situation? I’d really appreciate any advice or shared experiences. Thanks in advance!
2
0
102
3w
Reply to Audio cues not working when app is in the background
We keep the app running in the background using WKExtendedRuntimeSession (with self-care background mode). The audio session is configured with .playback category, .longFormAudio policy, and .mixWithOthers + .duckOthers options, and activated while the app is in the foreground. For audio playback we use AVAudioPlayer(data:) with in-memory WAV data for metronome ticks, and AVSpeechSynthesizer for voice counts. We also run a continuous near-silent AVAudioPlayer loop to keep the audio session active between beeps. Two specific questions: Is WKExtendedRuntimeSession the correct mechanism for this use case, or should we use something else? (We can't use HKWorkoutSession since users run this alongside other workout apps.) Does .longFormAudio work correctly with .mixWithOthers, or are those contradictory?
3w
Paid for Apple Developer Program but Account Still Pending After 2 Weeks (No Response from Support)
Hi everyone, I’m hoping someone here can help or point me in the right direction. I paid for the Apple Developer Program on March 26, 2026, but as of today (April 8, 2026), my account is still not active. On the developer portal, it still shows “Purchase to complete”, even though the payment has already gone through. I’ve already submitted two support tickets, but I haven’t received any response so far. Case number: 102856383224 Has anyone experienced this before or knows how to escalate this issue? Any advice would be really appreciated. Thanks in advance.
3
0
132
3w
Reply to Background UDP receive for lighting control (Art-Net/sACN)
Thanks for bringing this to the forums. Lemme start out by linking to iOS Background Execution Limits. You’ve probably already seen it, but it sets the stage (hey hey) for other folks following this thread. There are two parts to this: What’s technically possible? What will be accepted by App Review? I can’t addresse the second part. I don’t work for App Review and thus can’t speak on their behalf. My general advice is that you consult their published guidelines and, if you still have questions, contact them directly. With that out of the way, let’s return to the technical stuff. I want to start by recapping some of the points from TN2277 Networking and Multitasking: Networking works fine in the background as long as your app doesn’t get suspended. If your app does get suspended, normal networking will just stop. For things to continue, you need some sort of special affordance, the canonical example of that being a URLSession background session. There’s no special affordance for UDP. So, your question is equi
3w
Background UDP receive for lighting control (Art-Net/sACN)
I'm developing a lighting control app for iOS that receives Art-Net (UDP port 6454) and sACN (UDP port 5568) packets from a lighting console and relays commands to BLE wristbands with LEDs. This is used in live event production — the participant locks their phone while in a show and expects lighting control to continue uninterrupted. The problem UDP receive stops reliably ~30 seconds after the screen locks. I understand this is by design - iOS suspends apps in the background. However, I'm trying to understand if any supported path exists for this use case. What I've already tried UIRequiresPersistentWiFi = true - helps with Wi-Fi association but doesn't prevent app suspension Silent AVAudioEngine loop with UIBackgroundModes: audio - keeps the app alive, works in testing, but risks App Store rejection and feels like an abuse of the audio background mode NWListener (Network framework) on the UDP port - same suspension behaviour Socket rebind on applicationWillEnterForeground - recovers after resume but
1
0
80
3w
Program enrollment issue, no response from support
Hi everyone, I’m running into a frustrating issue with the Apple Developer Program and would really appreciate any advice. I was charged $99 USD for the membership and received the confirmation email saying it would be processed within 2 business days. However, I still don’t have access to the membership, and nothing has been activated on my account. What makes it worse — I’ve already tried contacting Apple support multiple times via email, but I haven’t received any response at all. So right now I’m stuck: payment went through, but no membership and no support response. Has anyone faced this before? Did your membership eventually activate on its own? Is there any way to actually reach Apple support (chat, phone, anything that works)? Should I escalate this somehow or request a refund through my bank? Any advice would really help — I feel like I’m just shouting into the void at this point. Thanks 🙏
23
0
796
3w
Reply to Programmatic IP Discovery for VZVirtualMachine in an App Store Sandbox
I want to make sure I understand your requirements here. You don’t expect to be running any helper code within the guest, right? So you want to discover the IP address (well, addresses) that the guest OS assigned to the shared interface without any cooperation from the guest? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
3w
First-time notarization submissions stuck "In Progress" for 24+ hours — Electron app
Hi, All notarization submissions for our new Electron macOS app have been stuck in In Progress for over 24 hours, with no logs available. Environment: Team ID: T7632V8V2D Certificate: Developer ID Application (valid, identity 83AC47F44D984509D5530439DD32729076B84982) Tool: xcrun notarytool submit (Xcode CLI) App: Electron 33, signed with hardened runtime, entitlements include allow-jit and allow-unsigned-executable-memory File: zip of .app (~236MB for arm64, ~104MB for x64) codesign --verify --deep --strict passes with no issues Apple System Status shows Developer ID Notary Service: Available Stuck submissions (all In Progress, no logs available): ea0fd8d4-1f2d-4266-aa84-aa3f3ba9a8fb (Apr 8, 09:40 UTC) dfaacdd2-1a11-4844-b8b7-b07bae809a7b (Apr 7, 16:49 UTC) 8256e1f0-e501-4423-8744-35b5b78ec87f (Apr 7, 10:32 UTC) a477d536-d84a-4c25-99ca-d125e0a22de1 (Apr 7, 09:07 UTC) This is our first time notarizing any app on this developer account. We understand first-time submissions may be routed to in-depth ana
1
0
243
3w
UISwitch glass effect not visible when reloading UITableView
Hi Team I’m facing an issue with UISwitch inside a UITableViewCell on iOS 26. When the switch is toggled, I update my data and call tableView.reloadData(). Since both the switch animation and table view reload happen at the same time, the UISwitch does not show its glass effect properly (it looks flat/missing during the animation). If I delay the reload, the switch renders correctly. Is this a known issue? Is there a recommended way to handle this without affecting the switch’s visual appearance?
Topic: UI Frameworks SubTopic: UIKit
Replies
3
Boosts
0
Views
178
Activity
3w
Initial presentation of popover hangs when shown from a button in the toolbar
I have a simple reproducer here: struct ContentView: View { @State private var isOn = false @State private var isPresented = false var body: some View { NavigationStack { Color.blue .toolbar { ToolbarItem(placement: .topBarTrailing) { Button(Press here) { isPresented = true } .popover(isPresented: $isPresented) { Color.green .frame(idealWidth: 400, idealHeight: 500) .presentationCompactAdaptation(.popover) } } } } } } When I tap on the button in the toolbar you can see there is a hang then the popover shows. Then every time after there is no longer a hang so this seems like a bug. Any ideas? I'm using Xcode 26.3 and a iPad Pro 13-inch (M5) (26.4) simulator.
Replies
3
Boosts
0
Views
187
Activity
3w
Reply to Initial presentation of popover hangs when shown from a button in the toolbar
Hello @klinee101 This is interesting, thanks for filing the report. I'll make sure it has the correct eyes on it. Do you see the same issue with Menu ? When I run your code, the display times are the same as Menu, and is not nearly as long as what is shown in your gif. Generally updates are provided in Feedback Assistant, but I encourage you to test new releases as they come and update us here along the way.  Travis
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
3w
Developer Field in app store showing outdated name
A few months back I migrated my account from an Individual account to an Organisation account. Since then, I published an app to the appstore. Under Developer in the app store, it still shows my Individual Account name, not the Business name I have entered since. I did open a case to try and fix this on March 30th but havent received any response or update. In the meantime our business also got a new phone number so I decided to update account information and in the Notes section reference the issue with the Developer field again, but also havent received an update. Am I looking in the wrong place or contacting the wrong people? Any help would genuinely he lifesaving.
Replies
2
Boosts
0
Views
66
Activity
3w
App stuck in Waiting for Review
Hi everyone, I’m running into an issue with my app submission. It has been stuck in Waiting for Review for over a month now, and there has been no progress at all. I’ve already contacted support twice, but unfortunately haven’t received any response. Has anyone experienced something similar? Are there any ways to speed up the review process or escalate the situation? I’d really appreciate any advice or shared experiences. Thanks in advance!
Replies
2
Boosts
0
Views
102
Activity
3w
Reply to Testing apple pay on web in a sandbox environment ran into problems
The console shows the following error: proto_: Event {sessionError:(PARSE_ERROR)}
Replies
Boosts
Views
Activity
3w
Reply to Audio cues not working when app is in the background
We keep the app running in the background using WKExtendedRuntimeSession (with self-care background mode). The audio session is configured with .playback category, .longFormAudio policy, and .mixWithOthers + .duckOthers options, and activated while the app is in the foreground. For audio playback we use AVAudioPlayer(data:) with in-memory WAV data for metronome ticks, and AVSpeechSynthesizer for voice counts. We also run a continuous near-silent AVAudioPlayer loop to keep the audio session active between beeps. Two specific questions: Is WKExtendedRuntimeSession the correct mechanism for this use case, or should we use something else? (We can't use HKWorkoutSession since users run this alongside other workout apps.) Does .longFormAudio work correctly with .mixWithOthers, or are those contradictory?
Replies
Boosts
Views
Activity
3w
Paid for Apple Developer Program but Account Still Pending After 2 Weeks (No Response from Support)
Hi everyone, I’m hoping someone here can help or point me in the right direction. I paid for the Apple Developer Program on March 26, 2026, but as of today (April 8, 2026), my account is still not active. On the developer portal, it still shows “Purchase to complete”, even though the payment has already gone through. I’ve already submitted two support tickets, but I haven’t received any response so far. Case number: 102856383224 Has anyone experienced this before or knows how to escalate this issue? Any advice would be really appreciated. Thanks in advance.
Replies
3
Boosts
0
Views
132
Activity
3w
How to add icon and thumbnail image for a Screensaver ?
I have made a screensaver for mac in swift, but couldn't find how to add an icon the logo image that shows up on saver file) and thumbnail (the cover image that shows up in the screensaver catalogue). Currently, it just shows a default blue spiral galaxy thumbnail and no icon image
Replies
7
Boosts
0
Views
637
Activity
3w
Reply to Background UDP receive for lighting control (Art-Net/sACN)
Thanks for bringing this to the forums. Lemme start out by linking to iOS Background Execution Limits. You’ve probably already seen it, but it sets the stage (hey hey) for other folks following this thread. There are two parts to this: What’s technically possible? What will be accepted by App Review? I can’t addresse the second part. I don’t work for App Review and thus can’t speak on their behalf. My general advice is that you consult their published guidelines and, if you still have questions, contact them directly. With that out of the way, let’s return to the technical stuff. I want to start by recapping some of the points from TN2277 Networking and Multitasking: Networking works fine in the background as long as your app doesn’t get suspended. If your app does get suspended, normal networking will just stop. For things to continue, you need some sort of special affordance, the canonical example of that being a URLSession background session. There’s no special affordance for UDP. So, your question is equi
Replies
Boosts
Views
Activity
3w
Background UDP receive for lighting control (Art-Net/sACN)
I'm developing a lighting control app for iOS that receives Art-Net (UDP port 6454) and sACN (UDP port 5568) packets from a lighting console and relays commands to BLE wristbands with LEDs. This is used in live event production — the participant locks their phone while in a show and expects lighting control to continue uninterrupted. The problem UDP receive stops reliably ~30 seconds after the screen locks. I understand this is by design - iOS suspends apps in the background. However, I'm trying to understand if any supported path exists for this use case. What I've already tried UIRequiresPersistentWiFi = true - helps with Wi-Fi association but doesn't prevent app suspension Silent AVAudioEngine loop with UIBackgroundModes: audio - keeps the app alive, works in testing, but risks App Store rejection and feels like an abuse of the audio background mode NWListener (Network framework) on the UDP port - same suspension behaviour Socket rebind on applicationWillEnterForeground - recovers after resume but
Replies
1
Boosts
0
Views
80
Activity
3w
Reply to Provisioning profiles marked "Ineligible" for Contactless Pass Provisioning even though entitlement is present in profile
We have the same problem. This is happening as soon as we get the fresh code from Git and updates ur local environment. Other wise if we run the code on the local without any fresh pull nothing is affected.
Replies
Boosts
Views
Activity
3w
Program enrollment issue, no response from support
Hi everyone, I’m running into a frustrating issue with the Apple Developer Program and would really appreciate any advice. I was charged $99 USD for the membership and received the confirmation email saying it would be processed within 2 business days. However, I still don’t have access to the membership, and nothing has been activated on my account. What makes it worse — I’ve already tried contacting Apple support multiple times via email, but I haven’t received any response at all. So right now I’m stuck: payment went through, but no membership and no support response. Has anyone faced this before? Did your membership eventually activate on its own? Is there any way to actually reach Apple support (chat, phone, anything that works)? Should I escalate this somehow or request a refund through my bank? Any advice would really help — I feel like I’m just shouting into the void at this point. Thanks 🙏
Replies
23
Boosts
0
Views
796
Activity
3w
Reply to Programmatic IP Discovery for VZVirtualMachine in an App Store Sandbox
I want to make sure I understand your requirements here. You don’t expect to be running any helper code within the guest, right? So you want to discover the IP address (well, addresses) that the guest OS assigned to the shared interface without any cooperation from the guest? 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
3w
First-time notarization submissions stuck "In Progress" for 24+ hours — Electron app
Hi, All notarization submissions for our new Electron macOS app have been stuck in In Progress for over 24 hours, with no logs available. Environment: Team ID: T7632V8V2D Certificate: Developer ID Application (valid, identity 83AC47F44D984509D5530439DD32729076B84982) Tool: xcrun notarytool submit (Xcode CLI) App: Electron 33, signed with hardened runtime, entitlements include allow-jit and allow-unsigned-executable-memory File: zip of .app (~236MB for arm64, ~104MB for x64) codesign --verify --deep --strict passes with no issues Apple System Status shows Developer ID Notary Service: Available Stuck submissions (all In Progress, no logs available): ea0fd8d4-1f2d-4266-aa84-aa3f3ba9a8fb (Apr 8, 09:40 UTC) dfaacdd2-1a11-4844-b8b7-b07bae809a7b (Apr 7, 16:49 UTC) 8256e1f0-e501-4423-8744-35b5b78ec87f (Apr 7, 10:32 UTC) a477d536-d84a-4c25-99ca-d125e0a22de1 (Apr 7, 09:07 UTC) This is our first time notarizing any app on this developer account. We understand first-time submissions may be routed to in-depth ana
Replies
1
Boosts
0
Views
243
Activity
3w