Post

Replies

Boosts

Views

Activity

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 AṀ / PM Display in Time ?
No, we are not developing iOS 26, we are just random developers from around the world writing apps for Apple's platforms. What you need to do is raise a bug with Apple in the usual way, at: https://feedbackassistant.apple.com/ and when doing so, please tell Apple exactly where the issue is. Saying the "AM/PM is missing from the Time Display" isn't enough. What is "Time Display"? Do you mean the clock in the menu bar, or somewhere else? Details are extremely important.
Topic: Design SubTopic: General
Jul ’25
Reply to Keyboard freezing on comment section
Is this with iOS 26 beta? If so, it's a beta; there are going to be issues with third-party apps because they haven't been written to work with iOS 26 yet. It's up to the developers of the TikTok app to update it to work with iOS 26. However, even if they update it, they cannot release the update yet as the final version of iOS 26 has not been released yet. This is one of the things you have to put up with when testing beta software. You can either wait for iOS 26 to be released in a few months' time, or you can downgrade your iPhone to iOS 18.5 and use TikTok as normal.
Topic: Community SubTopic: Apple Developers Tags:
Jul ’25