Post

Replies

Boosts

Views

Activity

Reply to I can't run or create a simulator that isn't iOS26 after downloading the Xcode Beta 3
Let's go through this one issue at a time: "I couldn't build my app": Why not? What error(s) are you seeing? Being unable to build your app has nothing to do with running your app on a Simulator or device (other than it needing to build before you can deploy it). "tried to create a simulator with iOS18 but it didn't show up": Meaning you don't have iOS 18.5 installed. "I tried deleting iOS18 platform and downloading it again": Where from? Xcode > Settings > Components? That's the best place to manage your installed runtimes. "I tried deleting Xcode Beta but it didn't solve the problem": The Xcode and Xcode-beta apps are entirely separate from the installed runtimes. The runtimes are installed in a separate location, which is very flexible because it saves disk space by allowing them to be shared between any installed Xcode apps. "I deleted Runtimes folder, it didn't solve": Don't do this. Use Xcode's Settings > Components to manage your runtimes. So, let me know what's listed in your Xcode (not Xcode-beta) app's Settings > Components window. If iOS 18.5 is listed but not installed, try clicking "Get" to install it.
Jul ’25
Reply to icloud capability not working?
When you created the app you selected "None" for storage, and now you want to add storage. The easiest way to do this is to create a completely new project and select the correct storage option, and see what that new project contains that your existing project doesn't. You should be able to figure out what keys need adding to a plist, or what code needs to exist in which files, etc. I am not suggesting you move your code from your current project into the new one; that would cause you far more problems than you need. Just compare what you have already and what the new project has, and make them the same. (The last thing you should attempt is to use an LLM or "AI" - you will spend far longer trying to give it the right context.)
Jul ’25
Reply to iOS 26 lets you swipe to delete history
You should probably raise these issues as bugs in the usual way. They won't really get progressed if they're only posted in these Developer Forums. You need to raise each issue you find separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them.
Jul ’25
Reply to Preview crashes when using ForEach with a Binding to an array and generics
It also crashes in Xcode 16.4 because what you're doing isn't valid. In your second example, line 28 is wrong. HelloView does not have any Bindings in it; it just takes a label parameter, so line 29 passes in element.label. Correct. Line 28 is treating your elements State var as though it's a binding, by adding the $ in front. And you're also adding the $ to the element part towards the end of the line. elements is a State var and element is a var whose label property is being passed into a view that does not have a Binding. This is why Preview crashes. It will compile if line 13 is this instead: @Binding var label: String, but based on what you're doing with label inside HelloView, i.e. you're not changing it, there's no need for it to be a binding var.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jul ’25
Reply to iOS 26.0 (23A5287g) - iPhone 15 Pro
I've got an iPhone 13 mini on iOS 26 beta 3, and the search field is at the bottom of the screen. If it's definitely not there on the iPhone 15 Pro, then you should raise a bug in the usual way at: https://feedbackassistant.apple.com/ then post the FB number here.
Replies
Boosts
Views
Activity
Jul ’25
Reply to iMessage and FaceTime issues
Given you're now back on iOS 18.5, this is not an issue in the beta. 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
Jul ’25
Reply to Couple simple suggestions to make WKExtendedRuntimeSession a lot better
If you have a suggestion, you should raise it at: https://www.apple.com/feedback/
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to I can't run or create a simulator that isn't iOS26 after downloading the Xcode Beta 3
Let's go through this one issue at a time: "I couldn't build my app": Why not? What error(s) are you seeing? Being unable to build your app has nothing to do with running your app on a Simulator or device (other than it needing to build before you can deploy it). "tried to create a simulator with iOS18 but it didn't show up": Meaning you don't have iOS 18.5 installed. "I tried deleting iOS18 platform and downloading it again": Where from? Xcode > Settings > Components? That's the best place to manage your installed runtimes. "I tried deleting Xcode Beta but it didn't solve the problem": The Xcode and Xcode-beta apps are entirely separate from the installed runtimes. The runtimes are installed in a separate location, which is very flexible because it saves disk space by allowing them to be shared between any installed Xcode apps. "I deleted Runtimes folder, it didn't solve": Don't do this. Use Xcode's Settings > Components to manage your runtimes. So, let me know what's listed in your Xcode (not Xcode-beta) app's Settings > Components window. If iOS 18.5 is listed but not installed, try clicking "Get" to install it.
Replies
Boosts
Views
Activity
Jul ’25
Reply to iOS 26 Beta 3 `safeAreaInsets`
Beta 3 of what? iOS, iPadOS, Xcode? I can't reproduce this on Xcode 26 beta 3 with iOS 26 beta 3, or Xcode 26 beta 3 with iOS 18.5. Do we need more code than you've given, maybe?
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Apple Maps Server API Geocoding returns empty results for Japanese addresses with lang: 'ja-JP'
There's no need to create a new post just to change something. You have one hour after creating your original post to edit it and make changes. If you're outside of that one-hour window - which you aren't - just reply to your original post. Duplicate posts clutter the forums. I'm marking this one as a duplicate, so your updated one remains.
Replies
Boosts
Views
Activity
Jul ’25
Reply to In iOS 26 beta3 version, the finishTransaction method is unable to remove transactions from the SKPaymentQueue, causing transactions to remain in the queue even after being processed.
Have either of you raised a Feedback report? If not, please do so at https://feedbackassistant.apple.com/ then post the FB number(s) here.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to App crash in iPadOS 26 if glassEffect modifier applied
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 Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Documentation for UIListContentConfiguration is incomplete in UIKit
The thing to do here is to raise this as a bug so that Apple can update the documentation. You can do so at: https://feedbackassistant.apple.com/ Just mentioning it in a post on the Developer Forums is unlikely to get that change actioned, because we're just random developers like you.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to icloud capability not working?
When you created the app you selected "None" for storage, and now you want to add storage. The easiest way to do this is to create a completely new project and select the correct storage option, and see what that new project contains that your existing project doesn't. You should be able to figure out what keys need adding to a plist, or what code needs to exist in which files, etc. I am not suggesting you move your code from your current project into the new one; that would cause you far more problems than you need. Just compare what you have already and what the new project has, and make them the same. (The last thing you should attempt is to use an LLM or "AI" - you will spend far longer trying to give it the right context.)
Replies
Boosts
Views
Activity
Jul ’25
Reply to SwiftUI & Xcode 26.0 beta3: Using Map in LazyVGrid causes "Observation tracking feedback loop"
You should raise this as a bug in the usual way. It may not get progressed if it's only posted in these Developer Forums. You need to raise each issue you find separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to New Finder window always on the wrong display
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
Jul ’25
Reply to iOS 26 lets you swipe to delete history
You should probably raise these issues as bugs in the usual way. They won't really get progressed if they're only posted in these Developer Forums. You need to raise each issue you find separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them.
Replies
Boosts
Views
Activity
Jul ’25
Reply to Preview crashes when using ForEach with a Binding to an array and generics
Your new example doesn't cause a crash in Xcode 26 beta 3 or Xcode 16.4 on my M1 Max Mac Studio with macOS 15.5. I wonder if it's something else. Are you on macOS 26 beta?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Preview crashes when using ForEach with a Binding to an array and generics
It also crashes in Xcode 16.4 because what you're doing isn't valid. In your second example, line 28 is wrong. HelloView does not have any Bindings in it; it just takes a label parameter, so line 29 passes in element.label. Correct. Line 28 is treating your elements State var as though it's a binding, by adding the $ in front. And you're also adding the $ to the element part towards the end of the line. elements is a State var and element is a var whose label property is being passed into a view that does not have a Binding. This is why Preview crashes. It will compile if line 13 is this instead: @Binding var label: String, but based on what you're doing with label inside HelloView, i.e. you're not changing it, there's no need for it to be a binding var.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’25