Post

Replies

Boosts

Views

Activity

Reply to No contextual menus above 15 mph?
These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. However, has your iPhone automatically activated the Driving focus? If so, just disable that.
Topic: Community SubTopic: Apple Developers Tags:
Sep ’25
Reply to Time To Launch App
Depends on the complexity of the app, and what the app does. Updates to an existing app are generally quicker than the first submission of a new app. Does it matter? If you need to have the app working from a certain date, you can set the release date in App Store Connect, so you can submit it, get it approved and delay the release until everything else is ready.
Sep ’25
Reply to Tahoe 26.0
Are you reporting a bug? If so, please do it in the usual way - raise it at https://feedbackassistant.apple.com/ then post the FB number here. As an aside, what do the tags you've assigned to your post have to do with your issue? What does "Business & Education" have to do with screensavers not appearing in a certain folder? And "Device Management"? Are you managing devices here, or just downloading screensavers? Please use the tags appropriately.
Aug ’25
Reply to App Analytics
When did you download the app, and when did you request the analytics? Which analytics are you looking at (and where)? There is obviously going to be a delay, as the processes that generate the analytics likely aren't running 100% of the time, and probably only run once a day or so. It's been a day since you posted this, so has your app download appeared somewhere?
Aug ’25
Reply to Bluetooth headphones
These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
Aug ’25
Reply to Function types as return types
If you make a mistake in your post you have a one-hour window in which you can edit it. If you're outside of that one hour, just reply to your original post. There's no need to create a duplicate thread for the same issue just because you didn't format something properly; that just clutters the forums. Anyway, correctly formatted: func stepForward(_ input: Int) -> Int { input + 1 } func stepBackward(_ input: Int) -> Int { input - 1 } func chooseStepFunction(backward: Bool) -> (Int) -> Int { backward ? stepBackward : stepForward } // Second version func chooseStepFunction(backward: Bool) -> (Int) -> Int { if backward { stepBackward } else { stepForward } } I don't get any errors, so this can't be the code that's causing it. The first version with the ternary operator works fine. As an aside, in Swift, if your function only does one thing then you don't need the return keyword.
Topic: Programming Languages SubTopic: Swift Tags:
Aug ’25
Reply to Backup when wanting to connect to MacBook
Okay, that makes more sense. Does your iPhone work, otherwise? If so, I wouldn't restore it unless you desperately need to put that game file on there. If you do, then you probably need to restore your iPhone, and you should be able to restore from your iCloud backup. This is one of the pitfalls of the betas - occasionally, something goes wrong and you have to start again. It's also a good reason for not installing the betas on your primary device.
Topic: Community SubTopic: Apple Developers Tags:
Aug ’25
Reply to Backup when wanting to connect to MacBook
I’m being told I have to reset my iPhone back to factory settings That image says if you're having problems you can reset it, not that you have to reset it. The image doesn't show the entire window, so you don't show us whether the other tabs are available, such as the Files tab which is where you would be able to drag & drop a file to add it to an app.
Topic: Community SubTopic: Apple Developers Tags:
Aug ’25
Reply to No contextual menus above 15 mph?
These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. However, has your iPhone automatically activated the Driving focus? If so, just disable that.
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Sep ’25
Reply to Update
Why not? What happens? What's on the Software Update screen? We'll need a bit more information than you've currently given us.
Replies
Boosts
Views
Activity
Sep ’25
Reply to Time To Launch App
Depends on the complexity of the app, and what the app does. Updates to an existing app are generally quicker than the first submission of a new app. Does it matter? If you need to have the app working from a certain date, you can set the release date in App Store Connect, so you can submit it, get it approved and delay the release until everything else is ready.
Replies
Boosts
Views
Activity
Sep ’25
Reply to Menu's primaryAction:{} is broken on latest iOS 26 beta
Good stuff! It means Apple can link any extra info or a solution presented here to that ticket, and vice versa.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Aug ’25
Reply to Regarding the issue of Xcode not displaying Apple Watch devices
I cannot find Developer Mode in the Privacy & Security settings on the Apple Watch It's right at the bottom of Privacy & Security. Are you sure you can't find it? Is it definitely not there?
Replies
Boosts
Views
Activity
Aug ’25
Reply to Touch Input Offset and Unresponsive Elements in iOS 18.6 (Xcode 16.4)
Have you raised a Feedback report? If not, please do so at https://feedbackassistant.apple.com/ then post the FB number here.
Topic: UI Frameworks SubTopic: General
Replies
Boosts
Views
Activity
Aug ’25
Reply to Menu's primaryAction:{} is broken on latest iOS 26 beta
Have you raised a Feedback report? If not, please do so at https://feedbackassistant.apple.com/ then post the FB number here.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Aug ’25
Reply to Tahoe 26.0
Are you reporting a bug? If so, please do it in the usual way - raise it at https://feedbackassistant.apple.com/ then post the FB number here. As an aside, what do the tags you've assigned to your post have to do with your issue? What does "Business & Education" have to do with screensavers not appearing in a certain folder? And "Device Management"? Are you managing devices here, or just downloading screensavers? Please use the tags appropriately.
Replies
Boosts
Views
Activity
Aug ’25
Reply to App Analytics
When did you download the app, and when did you request the analytics? Which analytics are you looking at (and where)? There is obviously going to be a delay, as the processes that generate the analytics likely aren't running 100% of the time, and probably only run once a day or so. It's been a day since you posted this, so has your app download appeared somewhere?
Replies
Boosts
Views
Activity
Aug ’25
Reply to App icons not showing
Have you raised a Feedback report? If not, please do so at https://feedbackassistant.apple.com/ then post the FB number here.
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Aug ’25
Reply to Bluetooth headphones
These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
Replies
Boosts
Views
Activity
Aug ’25
Reply to Function types as return types
If you make a mistake in your post you have a one-hour window in which you can edit it. If you're outside of that one hour, just reply to your original post. There's no need to create a duplicate thread for the same issue just because you didn't format something properly; that just clutters the forums. Anyway, correctly formatted: func stepForward(_ input: Int) -> Int { input + 1 } func stepBackward(_ input: Int) -> Int { input - 1 } func chooseStepFunction(backward: Bool) -> (Int) -> Int { backward ? stepBackward : stepForward } // Second version func chooseStepFunction(backward: Bool) -> (Int) -> Int { if backward { stepBackward } else { stepForward } } I don't get any errors, so this can't be the code that's causing it. The first version with the ternary operator works fine. As an aside, in Swift, if your function only does one thing then you don't need the return keyword.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Aug ’25
Reply to Alerts unresponsive ios26
What's a "pop alert"? Can you show us your code? If you've tried everything, raise a feedback report here: https://feedbackassistant.apple.com/ and provide more useful information than you've given in this post.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Aug ’25
Reply to Backup when wanting to connect to MacBook
Okay, that makes more sense. Does your iPhone work, otherwise? If so, I wouldn't restore it unless you desperately need to put that game file on there. If you do, then you probably need to restore your iPhone, and you should be able to restore from your iCloud backup. This is one of the pitfalls of the betas - occasionally, something goes wrong and you have to start again. It's also a good reason for not installing the betas on your primary device.
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Aug ’25
Reply to Backup when wanting to connect to MacBook
I’m being told I have to reset my iPhone back to factory settings That image says if you're having problems you can reset it, not that you have to reset it. The image doesn't show the entire window, so you don't show us whether the other tabs are available, such as the Files tab which is where you would be able to drag & drop a file to add it to an app.
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Aug ’25