Post

Replies

Boosts

Views

Activity

Comment on How to fix iOS 26 Beta / iOS 18 SDK compile conflicts?
It doesn't work. What I'm asking is how to compile code containing new iOS 26 API using Xcode 16, which doesn't support these new APIs? This code does not compile, I get an error: Value of type 'UIBarButtonItem' has no member 'sharesBackground'. if #available(iOS 26.0, *) { addBtn.sharesBackground = false } I had to use this solution but it seems flimsy. #if compiler(>=6.2) if #available(iOS 26.0, *) { addBtn.sharesBackground = false } #endif
Topic: UI Frameworks SubTopic: UIKit Tags:
1w
Comment on Double border in UIBarButtonItem with Custom View on iOS 26, bug or feature?
I discovered that the issue is not with going to the background, but with assigning the bar button item after the initial loading: "self.navigationItem.leftBarButtonItem = showFullScreenBarButtonItem()". I did create a test project, but I don’t know how to send you a link to an iCloud file, macOS Sequoia removed the option to simply copy a link, and now I need an email address in order to generate one 🙁. How should I send you the test project?
Topic: UI Frameworks SubTopic: UIKit Tags:
2w
Comment on
Thank you for the boilerplate response. If you carefully read the thread, you'll see that I filed a FB already, also at the request of another boilerplate responder, only to be met with silence ever since. Check "Ed Ford,  DTS Engineer"'s response above; it includes four of my comments. "k.wridan" also filed one too - requesting FBs is just a way to deflect attention.
May ’25
Comment on
It's not only the static frameworks and self, but printing local variables has issues too, in frameworks and in the main app too. But sometimes it works and that's why I didn’t mention it. I don't know where the "*.swiftmodule" are located, that's Xcode's job.
May ’25
Comment on
I opened a thread here, maybe you can ask this Apple engineer more details, he didn't answer my further inquiries: https://developer.apple.com/forums/thread/771788?answerId=826459022#826459022.
May ’25
Comment on LLDB error: type for self cannot be reconstructed: type for typename
I'll file a report in a few days, been busy with a release. What's strange is that it seems that it works for a few cases, of using 'po', but not for others. SwiftUI is used in one static lib, which exhibits the issue, but there is also another one which is not using SwiftUI at all, and still shows the issue. I did not check the Xcode 15.3, I'll do it right now.
Feb ’25