Post

Replies

Boosts

Views

Activity

Reply to Change to safe area logic on iOS 26
I'm experiencing a similar issue on iOS 26. When rotating the device to landscape, view.safeAreaInsets.top incorrectly returns 20pt instead of 0pt. The value only updates correctly after backgrounding the app. This was working as expected prior to iOS 26.
Topic: UI Frameworks SubTopic: UIKit
Oct ’25
Reply to Change to safe area logic on iOS 26
I'm experiencing a similar issue on iOS 26. When rotating the device to landscape, view.safeAreaInsets.top incorrectly returns 20pt instead of 0pt. The value only updates correctly after backgrounding the app. This was working as expected prior to iOS 26.
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Oct ’25
Reply to Incorrect keyboard frame on iOS 26 when using Secure Text with Autofill
This could help you get the correct keyboard height: let keyboardHeight = yourView.frame.height - yourView.keyboardLayoutGuide.layoutFrame.minY
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Oct ’25
Reply to Incorrect keyboard frame on iOS 26 when using Secure Text with Autofill
A solution I found in my case, though not ideal given the app was built with keyboard notifications, is to use: UIKeyboardLayoutGuide - https://developer.apple.com/documentation/uikit/uikeyboardlayoutguide to adjust your views based on the appearance of the keyboard.
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Oct ’25