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 Opting-out of window resizing in iPadOS 26
Never expect any response to any feedback you submit via Feedback Assistant. It will either get fixed or it won’t. I’ve filed well over a dozen beta bug reports in the last 4 weeks. 3 have been fixed with no feedback. I’m hoping the others get fixed in a future beta. And most of my reports are clearcut bugs that include a trivial app and instructions for reproducing the issue. Also keep in mind, based on the feedback numbers, Apple is getting around 20,000 bug reports per day right now! That’s way too many to expect personal feedback. As for this specific question, don’t expect Apple to reverse its decision on window resizing. Your best solution is to accept that “requires full screen” is going away. But you can set the window’s minimum size in the scene delegate so the user can’t make your window too small.
Topic: UI Frameworks SubTopic: UIKit Tags:
Jul ’25