Post

Replies

Boosts

Views

Activity

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 Is my POST method correct
This line: func createTask(_ task: Task) async throws -> Task { if let url = URL(string: "(baseURL)/todos"){ isn't in the formatted code block. Please, when you make a post, please check that your formatting is correct. If it isn't, just edit it and correct it. Anyway: func createTask(_ task: Task) async throws -> Task { if let url = URL(string: "(baseURL)/todos"){ is wrong. You need a \ before (baseURL) Why are you relying on some AI trash app to figure out such a simple bit of coding? Spend a few minutes and learn how to write a POST request using actual sources of information. This Claude thing isn't going to replace actual knowledge. The very fact that you've had to ask us humans kinda proves that.
Topic: Safari & Web SubTopic: General Tags:
Aug ’25
Reply to iPhone screen glare
These are the Developer Forums, where developers of third-party apps for Apple's platforms ask each other for hints and tips on coding. These forums are not where Apple's actual hardware designers chat about new features, and it's incredible that you think you might have a direct line to them... If you have a suggestion, you should raise it at: https://feedbackassistant.apple.com/
Topic: Design SubTopic: General
Aug ’25
Reply to Battery problem after update
Huh? When you got what? What version of iOS/iPadOS are you taking about? How has battery life decreased? You say your battery health is 99%, so what's your issue? Also, if this is regarding an iOS beta, then you're in the right place. However, if this is a normal iOS/iPadOS release, such as iOS 18.6.1, then you're in the wrong place. Please ask your question at the Apple Support Forums. Thanks. Please consider the place you're posting before you make your post. If this is a normal consumer issue, then the DEVELOPER forums are clearly not the right place for it.
Topic: Community SubTopic: Apple Developers Tags:
Aug ’25