Post

Replies

Boosts

Views

Activity

Reply to UISheetPresentationController with top attached views
Did you find a solution to this? I'm trying to do the same thing. I can't find any delegate methods that would tell you the current height of the sheet as it is being dragged. Constraints might work to position the view above the sheet but that won't help to decide when to show/hide the view as the sheet gets higher or lower.
Topic: UI Frameworks SubTopic: UIKit
Jul ’25
Reply to How do I avoid a platform?
#if !os(visionOS) // some code used on all platforms except visionOS #endif But is it really needed? You can let the code compile for visionOS, just don't release your app for visionOS. In App Store Connect, for your iOS app, under Pricing and Availability, you can uncheck support for visionOS (Apple Vision Pro).
Jul ’25
Reply to Same App Name, Different Platforms
In App Store Connect you create one app. Within that app you setup multiple platforms. Each platform gets its own binary, app description, app screenshots, etc. But all use the same app name. Though I don’t know if you can setup different binaries for iOS and IPadOS. My own app supports both iOS and IPadOS with one binary and then macOS with another.
Replies
Boosts
Views
Activity
Jul ’25
Reply to Urgent Feature Request: Auto-Hide Home Bar in iOS 18.x Based on iOS 26 Beta Experience
The proper way to make such a request is to use Feedback Assistant.
Topic: Design SubTopic: General
Replies
Boosts
Views
Activity
Jul ’25
Reply to ios26 uisegmentedcontrol used as customview on uibarbuttonitem not working
See this thread: https://developer.apple.com/forums/thread/789898
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Jul ’25
Reply to Issue with layoutMarginsGuide under iOS 26
I submitted bug FB18883173
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to iOS 26 beta 3 bug report
This is not the proper place for reporting bugs. Please use the Feedback Assistant app to report any issues to Apple.
Topic: Design SubTopic: General
Replies
Boosts
Views
Activity
Jul ’25
Reply to UIRequiresFullScreen Deprecation
Please see Opting-out of window resizing in iPadOS 26 and UIRequiresFullScreen in iPadOS 26 for existing discussions on this topic.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to UISheetPresentationController with top attached views
Did you find a solution to this? I'm trying to do the same thing. I can't find any delegate methods that would tell you the current height of the sheet as it is being dragged. Constraints might work to position the view above the sheet but that won't help to decide when to show/hide the view as the sheet gets higher or lower.
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Jul ’25
Reply to addSubview with bounds not working
Setting frames and bounds is still supported, even in iOS 26. Constraints have a lot of advantages but they are not required.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to How do I avoid a platform?
Yeah but that's more awkward than the solution I gave. Typing a ! is easier than adding the #else.
Replies
Boosts
Views
Activity
Jul ’25
Reply to Show Library Button in Interface Builder is Missing?
It's moved again. In Xcode beta 3 it's now here:
Replies
Boosts
Views
Activity
Jul ’25
Reply to [iOS26] ConfirmationDialogue with legacy alert style?
Are you referring to UIAlertController? You don't need an anchor. Just create the alert and present it. It will appear in the middle of the screen. Nevermind. I just noticed this is posted in the SwiftUI section. My answer is for UIKit.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Jul ’25
Reply to How do I avoid a platform?
#if !os(visionOS) // some code used on all platforms except visionOS #endif But is it really needed? You can let the code compile for visionOS, just don't release your app for visionOS. In App Store Connect, for your iOS app, under Pricing and Availability, you can uncheck support for visionOS (Apple Vision Pro).
Replies
Boosts
Views
Activity
Jul ’25
Reply to UIVisualEffectView using UIGlassEffect does not follow layer.cornerRadius values
See https://developer.apple.com/forums/thread/792269 which leads to yet another thread with more info.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to How to avoid the traffic light buttons on iPad
You can't eliminate the traffic light but you can specify its style a bit. In UIKit you can implement the UIWindowSceneDelegate method preferredWindowingControlStyle(for:) and return one of three styles. I don't know the SwiftUI equivalent.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Jul ’25
Reply to "Show API Changes" no longer available on Apple Developer Documentation website?
I really miss that feature too. Related: https://developer.apple.com/forums/thread/791342
Replies
Boosts
Views
Activity
Jul ’25