Post

Replies

Boosts

Views

Activity

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
Reply to My ios26 is not a liquid glass in iPhone 11 pro max
You don't need to raise an entirely new post just to change the details in your original post. You have a one-hour window in which to make changes. If you're outside that window - which, in this case, you aren't - and you feel that your edits are really important, then just reply to your original post. Duplicate posts clutter the forums. Marking this one as a duplicate.
Topic: Community SubTopic: Apple Developers Tags:
Jul ’25
Reply to Liquid Glass is not just decoration it is the soul of iOS 26
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 what they're doing in the platform code. If you have a suggestion, you should raise it at: https://feedbackassistant.apple.com/
Topic: Design SubTopic: General
Jul ’25
Reply to ELBA-APP doesnt work!!!
You've installed a beta version of iOS 26 on your primary device. There are going to be issues with third-party apps, like your banking app, because they were written to work with iOS 18, not iOS 26. Most apps work fine, but some apps need updating to implement new features, or to address bugs that the newer version of iOS uncovers. You should never install a beta OS on your primary device, for exactly the reason you've discovered. Apple cannot fix your banking app unless it is a bug in iOS that's causing the issue. The developer of the app will have to update their app to work with iOS 26, but they cannot release it until iOS 26 is released around September. I suggest, if the banking app is important to you, that you downgrade to iOS 18.5, and I really hope you took a backup before you installed iOS 26 beta...
Jul ’25
Reply to SWIFTUI List object .onTapGesture : Continued Version 2
Your @Published var on line 27 is used in the ForEach on line 96. In order for the List on line 94 to work properly, each item in it must be identifiable, but your struct is not Identifiable, so for line 40, try: struct SWIFT_DBG_Workflow_Trans_Datamodel_Data_ListViewModel: Identifiable { let id = UUID() // and add this line Or you can change line 96 to: ForEach(WorkflowTransListVM.SWIFT_DBG_Workflow_Trans_Datamodel_Rows, id: \.self) { item in You might also want to shorten the names of your variables and structs, as they're quite difficult to read. For example, this var on line 75: let SWIFT_DBG_Workflow_Trans_Datamodel_Response could simply be let dataModelResponse
Topic: UI Frameworks SubTopic: SwiftUI
Jul ’25
Reply to Newish developer scoping error question.
Please don't post screenshots of errors. They cannot be searched for, so if someone else has a similar issue and your post has the solution, they wouldn't be able to find it. Now, to your issue... I can see you have a file called MainView.swift, but there is no indication that there is a struct inside that file called MainView. Can you confirm the MainView struct exists? Do a search in Xcode for "struct MainView". Alternatively, it might be that you have got the struct in that file but you've removed MainView.swift from the app target. To confirm this, select the file in the left-hand pane, then, in the Inspectors window on the right (not seen in your screenshot, so tap the "Hide or show the inspectors" button in the very top right of the Xcode window to show it). Select the first icon - it looks like a document - and look for the "Target Membership" section. If that area is empty, then it's not in your app, which is why the app cannot see the MainView struct. Add it with the plus button. Secondly, and not related to your issue, your Services and Resources folders are within your Views folder. They should probably be at the same level as Views, not inside it. Let me know whether this fixes it for you, and if so, mark the answer as correct. Thanks.
Topic: Design SubTopic: General 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:
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
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:
Replies
Boosts
Views
Activity
Jul ’25
Reply to My ios26 is not a liquid glass in iPhone 11 pro max
You don't need to raise an entirely new post just to change the details in your original post. You have a one-hour window in which to make changes. If you're outside that window - which, in this case, you aren't - and you feel that your edits are really important, then just reply to your original post. Duplicate posts clutter the forums. Marking this one as a duplicate.
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Liquid Glass is not just decoration it is the soul of iOS 26
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 what they're doing in the platform code. If you have a suggestion, you should raise it at: https://feedbackassistant.apple.com/
Topic: Design SubTopic: General
Replies
Boosts
Views
Activity
Jul ’25
Reply to ELBA-APP doesnt work!!!
You've installed a beta version of iOS 26 on your primary device. There are going to be issues with third-party apps, like your banking app, because they were written to work with iOS 18, not iOS 26. Most apps work fine, but some apps need updating to implement new features, or to address bugs that the newer version of iOS uncovers. You should never install a beta OS on your primary device, for exactly the reason you've discovered. Apple cannot fix your banking app unless it is a bug in iOS that's causing the issue. The developer of the app will have to update their app to work with iOS 26, but they cannot release it until iOS 26 is released around September. I suggest, if the banking app is important to you, that you downgrade to iOS 18.5, and I really hope you took a backup before you installed iOS 26 beta...
Replies
Boosts
Views
Activity
Jul ’25
Reply to Ios26 beta 3 concerns about liquid glass design
Why have you posted this again? You already accepted an answer on this thread: https://developer.apple.com/forums/thread/792054 There's no need to make duplicate posts, as they just clutter the forums.
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to SWIFTUI List object .onTapGesture : Continued Version 2
Your @Published var on line 27 is used in the ForEach on line 96. In order for the List on line 94 to work properly, each item in it must be identifiable, but your struct is not Identifiable, so for line 40, try: struct SWIFT_DBG_Workflow_Trans_Datamodel_Data_ListViewModel: Identifiable { let id = UUID() // and add this line Or you can change line 96 to: ForEach(WorkflowTransListVM.SWIFT_DBG_Workflow_Trans_Datamodel_Rows, id: \.self) { item in You might also want to shorten the names of your variables and structs, as they're quite difficult to read. For example, this var on line 75: let SWIFT_DBG_Workflow_Trans_Datamodel_Response could simply be let dataModelResponse
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Jul ’25
Reply to Ios26 beta 3 concerns about liquid glass design
If you have a suggestion, you should raise it at: https://feedbackassistant.apple.com/ These are the Developer Forums, where developers of third-party apps for Apple's platforms ask each other for hints and tips on coding.
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Newish developer scoping error question.
Please don't post screenshots of errors. They cannot be searched for, so if someone else has a similar issue and your post has the solution, they wouldn't be able to find it. Now, to your issue... I can see you have a file called MainView.swift, but there is no indication that there is a struct inside that file called MainView. Can you confirm the MainView struct exists? Do a search in Xcode for "struct MainView". Alternatively, it might be that you have got the struct in that file but you've removed MainView.swift from the app target. To confirm this, select the file in the left-hand pane, then, in the Inspectors window on the right (not seen in your screenshot, so tap the "Hide or show the inspectors" button in the very top right of the Xcode window to show it). Select the first icon - it looks like a document - and look for the "Target Membership" section. If that area is empty, then it's not in your app, which is why the app cannot see the MainView struct. Add it with the plus button. Secondly, and not related to your issue, your Services and Resources folders are within your Views folder. They should probably be at the same level as Views, not inside it. Let me know whether this fixes it for you, and if so, mark the answer as correct. Thanks.
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to SWIFTUI List object .onTapGesture or Click event not setting values ?. Bug or issue with way .sheet works?
I think, on line 60 in your code above, you need to add selected_Mst_record in so it becomes: .sheet(isPresented: $isPopupSheetActive) { selected_Mst_record in It's something to do with the getter, I think.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Jul ’25