Post

Replies

Boosts

Views

Activity

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 Feature Proposal: CrossRun
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/ As an aside, I don't ever want to run Windows software on my iPhone or iPad.
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’25