Post

Replies

Boosts

Views

Activity

Comment on iPadOS 26: App Window Controls Overlap Navigation Bar Buttons - Seeking Opt-Out Option (iPad 11th Gen, Objective-C)
I've given up on moving the leftBarItem's button, but I was able to work around the issue by applying UISceneWindowingControlStyle.minimalStyle. Specifically, I added the following to SceneDelegate.m: (UISceneWindowingControlStyle *) preferredWindowingControlStyleForScene:(UIWindowScene *) windowScene API_AVAILABLE(ios(26.0)){ if (@available(iOS 26.0, *)) { return [UISceneWindowingControlStyle minimalStyle]; } else { // Fallback on earlier versions } }
Topic: UI Frameworks SubTopic: UIKit Tags:
Jun ’25