6,524 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
5
votes
1
answer
554
views
Unselected UITabBar item's icon color does not change in iOS26
When trying to render a UITabBarController with custom tint color for selected and unselected items, I am getting correct behaviour on version prior to iOS26. But on iOS26 tint is correctly applied on ...
0
votes
0
answers
69
views
How to get the exact frame of the floating tab bar in iPadOS 18 (UITabBarController)
In iPadOS 18, Apple moved the UITabBar from the bottom to the top as a floating tab bar, but I’m unable to get the correct frame for it.
I need the exact frame (and optionally each tab item’s view) so ...
1
vote
1
answer
356
views
UINavigationController with custom navigationItem titleView not working inside UITabBarController under iOS 26
I've sample code for the reference which works fine prior iOS 26 but not in iOS 26.
class SampleViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
...
1
vote
2
answers
435
views
How to create more than 5 tabs in UITabBar on iOS 26
I’m trying to create more than 5 tabs in a UITabBarController on iOS 26. By default, the 6th tab and onwards get grouped into the "More" tab.
I’ve already tried using the regular trait collection ...
3
votes
1
answer
2k
views
iOS 26 - Liquid Glass with custom UITabBarController
I have a custom UITabBarController. In the init method, it sets its viewControllers. Each view controller is setting its own tabItem.
Now for liquid glass, how can I make the last tab separated like ...
2
votes
0
answers
459
views
ios 26 UITabBarController weird behaviour - Tabbar Icons flicker and appear and disappear on Tab Change (Tap gesture )
I am using a custom UITabBarController and having an issue with the tab bar icons flickering (disapperaring and reappearing when tapping on different tabs).
In my code I have the following to get the ...
1
vote
2
answers
1k
views
Navigation bar back button "jumps" on first push from TabBar root on iOS 26 Beta
Short description / problem
When I push from a tab bar root navigation controller to a new screen, the navigation bar back button jumps (moves out of place) briefly during the push animation and then ...
0
votes
0
answers
64
views
How do I change the dimensions of a tab bar in the tab bar controller view controller
I want the Tab bar to span the length of my top bar. On iPhone this works by default on the bottom, but on iPad, which my app is targeted for, I can't get it to do this. In the triangle part of ...
0
votes
0
answers
31
views
Display modal below tabbar [duplicate]
I have a view controller for a Tabbar and I am trying to display a modal using a hosting controller to display a SwiftUI view.
However, the modal keeps appearing over the tabbar, blocking it.
I would ...
9
votes
3
answers
3k
views
hidesBottomBarWhenPushed not working on iOS 26 with Xcode 26 — tab bar no longer hides when pushing a view controller
I’m experiencing an issue after updating to Xcode 26 and running my app on iOS 26.
In previous iOS versions, setting hidesBottomBarWhenPushed = true on a view controller would correctly hide the ...
19
votes
1
answer
11k
views
How to revert UITabBarController to the pre-iOS 18 appearance (Xcode 26)?
I’m working on an iOS app using Xcode 26 (iOS 26 SDK), and after rebuilding the project, the UITabBarController now uses the new Liquid Glass appearance introduced in iOS 26.
However, our app is cross-...
0
votes
0
answers
43
views
UIView based frame animations stop working after displaying a View using SwiftMessages
When I perform a scroll, I use the UIView animation block to hide my tab bar.
My UITabBarController is the root view controller in a NavigationController
This is the code that I use to do the hiding ...
0
votes
0
answers
168
views
UINavigationBar title "bounces" when switching UITabBarController tabs
I'm experiencing a strange issue only on iOS 18 with navigation bar titles (large and normal).
When switching between tabs in a UITabBarController, the title briefly bounces/jumps by a few pixels ...
0
votes
0
answers
196
views
First item in UITabBarController's 'More' tab not showing up properly when using storyboard and run on device with ios 18.0
Problem with "More" Tab in UITabBarController on iOS 18
I'm working on an iOS application using Objective-C and UITabBarController. I have more than five tabs, so the additional ones are ...
0
votes
1
answer
129
views
How to Add a Child ViewController to UITabBarController Without Creating a "Ghost" Tab Bar Item in iOS?
I'm working on an iOS app where I need to present a view controller over the entire screen, including a UITabBarController, without adding the view controller to the tab bar's items or altering the ...