I am seeing a wierd concern in iOS 26 associated to UITabBarController, the place tab bar seems above pushed element view throughout swiping again.
Steps to Reproduce
- Navigate to the element view controller from primary view controller and conceal the tab bar:
override func put together(for segue: UIStoryboardSegue, sender: Any?) {
tremendous.put together(for: segue, sender: sender)
segue.vacation spot.hidesBottomBarWhenPushed = true
}
- Carry out an interactive swipe-back gesture.
- In iOS 26, the tab bar seems above the element view through the transition. However previous to iOS 26, the tab bar stays behind the element view through the transition.


Questions
- Is that this an anticipated habits in iOS 26?
- Ought to
hidesBottomBarWhenPushednonetheless be used, or is there a more recent API/sample? - How can I restore the pre–iOS 26 habits the place the tab bar stays behind the element view throughout interactive transitions?

