Post

Replies

Boosts

Views

Activity

Reply to ipados
@Manuelinh0 What happens in Software Update? Is anything listed for update, but it fails to install, or is nothing listed to install? Can you turn off developer beta updates, and turn them back on? You could try wiping it and putting it back to iPadOS 18, then enabling developer betas again?
Topic: Community SubTopic: Apple Developers Tags:
1d
Reply to IOS 26 Beta
Two things: Have you tried other headphones? If so, do they exhibit the same issue? If so, then yes it's an issue. If not, then it's your headphones. Secondly, if it's an issue in the software, raise it in the usual way, via the Feedback Assistant: https://feedbackassistant.apple.com/ so Apple know about it, then post the FB number here.
Topic: Community SubTopic: Apple Developers Tags:
1d
Reply to Touch Input Offset and Unresponsive Elements in iOS 18.6 (Xcode 16.4)
You have posted a bug report to the Developer Forums. The Developer Forums are for developers from all over the world to ask for hints and tips on coding their apps for Apple platforms. They are not a direct link to Apple's developer employees. the usual way to report an issue to Apple is via the Feedback Assistant, so that they're aware of it. Posting a thread on these forums is not going to get your issue logged, triaged, and ultimately fixed unless you make Apple aware of the issue via the Feedback Assistant. That's the purpose.
Topic: UI Frameworks SubTopic: General
2d
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:
2d
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.
2d
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.
4d
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?
1w
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.
1w
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:
1w