Post

Replies

Boosts

Views

Activity

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 onSubmit modifier not triggered when placement is automatic in searchable modifier.
You should probably raise this as a bug in the usual way. It won't really 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. When raising a bug it's important to mention which version of which operating system you've found the issue in, e.g. iOS 18.5, iOS 26 beta 3, or visionOS 26 beta 3 etc.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jul ’25
Reply to Unable to quit Xcode normally
This isn't just an Xcode issue This sometimes happens in other apps, too, when some other background process hasn't finished exiting and the main app (Xcode) just waits for it to finish. As you found, the way to close Xcode is to Force Quit it. That won't do any harm. It likely won't do any harm either if you just leave it - unless you want to shut down your Mac. You probably don't need to raise a bug for this, but you can if you like, at: https://feedbackassistant.apple.com/ and post the FB number here. FYI, you don't need to mention your Mac's serial number, especially for software bugs.
Jul ’25
Reply to Way to get support for physical damage with Vision Pro if you are in beta version of the software.
Apple Geniuses and in-store service generally cannot work with devices on a beta, so you have to be on a publicly-released version. Go back to visionOS 2 (the latest publicly released version), and make another appointment. There are instructions on how to do this all over the internet, but the general gist is you have to wipe the device and install from scratch.
Jul ’25
Reply to List View within a Scrollview
Not everything in a List has to be the same thing. In one of my apps I have a List that has a HeaderView(), then a ToolbarView() then a set of EventRow() views, which looks pretty similar to your wireframe. Something like this: VStack { List { HeaderView() ToolbarView() ForEach(events.indices, id: \.self) { index in EventRow(events[index]) } } } Everything scrolls vertically within.
Topic: Design SubTopic: General Tags:
Jul ’25
Reply to Issue with UIActivityViewController Not Showing X (formerly Twitter) and Facebook Icons When Sharing Images on iOS 26 Beta
You should probably raise this as a bug in the usual way. It won't really 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. Also, after you mention "X" is "(formerly Twitter)" once, you really don't need to keep doing it ;)
Topic: UI Frameworks SubTopic: UIKit Tags:
Jul ’25
Reply to Complex view structures are frustratingly too much work
This sounds like you've just not designed your code properly. Yes, @Binding is used to represent a @State var from a different component, because they are designed that way. They are very useful, and I can see and understand why they exist. As I suggested in your other similar post, just raise the bugs as you find them. If you raise them, they can get fixed.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jul ’25
Reply to Why is SwiftUI so broken and not improving layered UI functionality
What do you mean by: SwiftUI compiler fails to compile and just reports "I'm lost in the weeds", with no indication of what it was last working on, aside from a particular level in a multi-layered nested UI. Have you raised any bugs about it? Perhaps if you explain - in a bug - exactly what the issue is, Apple's developers might be able to make improvements. I raised a bug where I'd renamed a binding variable but forgotten to rename it in one place it was being used, and the compiler said it was unable to compile. Apple's developers fixed it, so when I forget to rename the use of the variable now it fails at that point, so I know where the issue is. If you do the same, these bugs will be fixed. You'll be happier, other developers will be happier, Apple developers will be happier. It's the right thing to do :)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jul ’25
Reply to Apple Music iOS 26 features in Android
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 developers chat about new features. If you have a suggestion, you should raise it at: https://feedbackassistant.apple.com/
Topic: Media Technologies SubTopic: Audio Tags:
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
Reply to onSubmit modifier not triggered when placement is automatic in searchable modifier.
You should probably raise this as a bug in the usual way. It won't really 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. When raising a bug it's important to mention which version of which operating system you've found the issue in, e.g. iOS 18.5, iOS 26 beta 3, or visionOS 26 beta 3 etc.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to SwiftUI .toolbar(.keyboard) Not Showing on First Appearance in fullScreenCover (iOS 18)
What happens if you remove the NavigationStack on line 14?
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Jul ’25
Reply to Unable to quit Xcode normally
This isn't just an Xcode issue This sometimes happens in other apps, too, when some other background process hasn't finished exiting and the main app (Xcode) just waits for it to finish. As you found, the way to close Xcode is to Force Quit it. That won't do any harm. It likely won't do any harm either if you just leave it - unless you want to shut down your Mac. You probably don't need to raise a bug for this, but you can if you like, at: https://feedbackassistant.apple.com/ and post the FB number here. FYI, you don't need to mention your Mac's serial number, especially for software bugs.
Replies
Boosts
Views
Activity
Jul ’25
Reply to App Groups Entitlement Mismatch Between Provisioning Profile and Xcode Requirements for iOS App Extension
There's no need to create a duplicate post just to make a few changes to your original post. You have one hour to make changes to your original post. If you're outside of that one-hour window and the edits are absolutely necessary, just reply to your own post. Duplicate posts clutter the forums.
Replies
Boosts
Views
Activity
Jul ’25
Reply to Way to get support for physical damage with Vision Pro if you are in beta version of the software.
Apple Geniuses and in-store service generally cannot work with devices on a beta, so you have to be on a publicly-released version. Go back to visionOS 2 (the latest publicly released version), and make another appointment. There are instructions on how to do this all over the internet, but the general gist is you have to wipe the device and install from scratch.
Replies
Boosts
Views
Activity
Jul ’25
Reply to List View within a Scrollview
Not everything in a List has to be the same thing. In one of my apps I have a List that has a HeaderView(), then a ToolbarView() then a set of EventRow() views, which looks pretty similar to your wireframe. Something like this: VStack { List { HeaderView() ToolbarView() ForEach(events.indices, id: \.self) { index in EventRow(events[index]) } } } Everything scrolls vertically within.
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to How to hide the tick marks on a SwiftUI Slider in iOS26
The video says they're there when you apply the step parameter. If you're not applying that parameter and the tick marks are there, that suggests a bug.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Issue with UIActivityViewController Not Showing X (formerly Twitter) and Facebook Icons When Sharing Images on iOS 26 Beta
You should probably raise this as a bug in the usual way. It won't really 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. Also, after you mention "X" is "(formerly Twitter)" once, you really don't need to keep doing it ;)
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Complex view structures are frustratingly too much work
This sounds like you've just not designed your code properly. Yes, @Binding is used to represent a @State var from a different component, because they are designed that way. They are very useful, and I can see and understand why they exist. As I suggested in your other similar post, just raise the bugs as you find them. If you raise them, they can get fixed.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Why is SwiftUI so broken and not improving layered UI functionality
What do you mean by: SwiftUI compiler fails to compile and just reports "I'm lost in the weeds", with no indication of what it was last working on, aside from a particular level in a multi-layered nested UI. Have you raised any bugs about it? Perhaps if you explain - in a bug - exactly what the issue is, Apple's developers might be able to make improvements. I raised a bug where I'd renamed a binding variable but forgotten to rename it in one place it was being used, and the compiler said it was unable to compile. Apple's developers fixed it, so when I forget to rename the use of the variable now it fails at that point, so I know where the issue is. If you do the same, these bugs will be fixed. You'll be happier, other developers will be happier, Apple developers will be happier. It's the right thing to do :)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Apple Music iOS 26 features in Android
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 developers chat about new features. If you have a suggestion, you should raise it at: https://feedbackassistant.apple.com/
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Jul ’25