Post

Replies

Boosts

Views

Activity

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 What personal data is included in iOS storage logs
You say you noticed this as part of a feedback report, so you must have attached the file to the report. Did you look in the file yourself? Generally, log files may contain the name of the device but rarely any personally-identifiable information (PII). It's unlikely to contain your email address or name, for example, unless there's an issue with an email process. Can you look into the file yourself, or is it encrypted?
Topic: Privacy & Security SubTopic: General 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:
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
Reply to Regarding Launch Screens
Probably, no one here will know for sure, but your guess is sound. I would put a launch screen in now and just be done with it. They're easy to do, so there's no real reason not to, and it means your app won't crash. Win-win!
Replies
Boosts
Views
Activity
Jul ’25
Reply to Secure Field "Lags" when certain conditions met.
What version of iOS/iPadOS is this in? 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 can raise the issue at: https://feedbackassistant.apple.com/ and post the FB number here if you want.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to What personal data is included in iOS storage logs
You say you noticed this as part of a feedback report, so you must have attached the file to the report. Did you look in the file yourself? Generally, log files may contain the name of the device but rarely any personally-identifiable information (PII). It's unlikely to contain your email address or name, for example, unless there's an issue with an email process. Can you look into the file yourself, or is it encrypted?
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to iOS 26 Beta 3 — iPhone 13 stuck at 1% battery, 0% battery health, reboots every few minutes
You've already raised this as FB18327769. If you have further information, add it to that report, not to these Developer Forums. This isn't the right place for bug reports.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Jul ’25