Post

Replies

Boosts

Views

Activity

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
Reply to #BringBackSceneKit
Why? You can't just post that you want SceneKit back without giving some reason as to why. Isn't the replacement good enough for you? Why not? Is it missing something? What's it missing? Apple aren't going to bring back SceneKit, but if you have suggestions on improvements to its replacement - which I believe is RealityKit? - then why not raise them as feedback suggestions in the usual way? Please do so at https://feedbackassistant.apple.com/ then post the FB number(s) here.
Topic: Graphics & Games SubTopic: SceneKit Tags:
Jul ’25
Reply to iOS 26 Set the time to 4000 AD and restart the iPhone. I'm not a bad person, I just want you to know that this is serious.
These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. If you've found a bug, you should raise it 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. No one is going to set their iPhone date to 4000 AD without knowing exactly what it's going to do. Is it bad? Is it good? You've said it's serious, so who's going to do this if it's possibly going to break something? No one. Be a better citizen, and just raise bugs as normal.
Jul ’25
Reply to Tuple Comparision
I'm not sure what you're trying to achieve here? Why would false be less than true? It makes no sense. Anyway, I get the same error in Xcode as I type out your code, which is a compile-time error because Xcode is compiling the code as I type, and it found this problem.
Topic: Programming Languages SubTopic: Swift Tags:
Jul ’25