6,223 questions
0
votes
1
answer
31
views
Navigation BarButtonItem color changed in some screens
The minimum target of my app is iOS 26, and used default navigation bar with buttons throughout the app. Since iOS 26, I’ve noticed that the UIBarButtonItem text color changes on some screens. Earlier,...
0
votes
0
answers
23
views
LaunchScreen storyboard safe area is different with the app's
I want to recreate the first page of the app for the launch screen, and unfortunately, it can be done only using Storyboard, but strangely, the Storyboard seems to have a different safe area with ...
0
votes
0
answers
70
views
searchController.searchBar fades when popping back after push to other viewcontroller
I’m trying to display a search bar directly inside the navigation bar (not below it), so it stays visible all the time — similar to Telegram’s design.
When I assign the search bar to the navigation ...
4
votes
0
answers
738
views
iOS 26: hidesSharedBackground works for leftBarButtonItem but not for backBarButtonItem
In iOS 26, Apple introduced a new shadow/background effect around navigation bar buttons. The hidesSharedBackground property successfully removes this effect from regular bar button items, but fails ...
0
votes
1
answer
96
views
Is there any way to get an effect like the TabBar automatically zooming when you slide the page in Safari?
Is there a built-in system method to achieve this? I tried manually monitoring the page's scrolling to scale the TabBar, but the effect is not as smooth as that of Safari.
Since iOS 8, ...
9
votes
1
answer
5k
views
Disable glass effect on UIBarButtonItem's customView
Currently I am working on making my app ready for iOS 26, and noticed an issue with a UIBarButtonItem(customView:) as a leftBarButtonItem. I want to disable the glass effect.
The glass effect needs to ...
2
votes
1
answer
600
views
iOS 26 Disable UINavigationBar titleView automatic color inversion [closed]
Is it possible to disable automatic color inversion in iOS 26 UINavigationBar which triggered by the system depending on background? Can't find any new method in documentation for that.
This is for ...
4
votes
2
answers
728
views
Xcode 26 (beta 6), iPadOS 26: StatusBar overlaps with NavigationBar after presented viewController rotates and dismissed
I want to hide status bar JUST for a presented viewController. The issue relays when the presented view appears, at first it seems there is an additional space in the navigationBar which need to be ...
3
votes
1
answer
770
views
(iOS26) How to make a navigation bar that calendar or fitness app has
I want a navigation bar that has large title and custom view below with transparent background, and not to be shrink while scrolling in iOS 26.
The calendar app and fitness app has this layout, so I ...
0
votes
0
answers
49
views
How to remove Navigation title image from UqudoSDK in iOS
Currently in one of the project we are using UqudoSDK to handle ID verification. But the issue is I am not able to remove the title image in Navigation provided by Uqudo.
As per Uqudo docs, we have to ...
0
votes
0
answers
114
views
iOS 16 NavigationBar title display mode inline not working
I lowered my project's deployment target from iOS 18 to iOS 16. I'm using a custom navigation bar throughout the app. On iOS 16, when I use .navigationBarTitleDisplayMode(.inline), the navbar title ...
3
votes
1
answer
2k
views
Navigation bar title in the same vertical space as the toolbar items in iOS 26?
Apple's iOS 26 new design language shows the navigation bar title in the same vertical area as the top tool bar:
Video: WWDC25: Design foundations from idea to interface
However when I try to do the ...
0
votes
1
answer
17
views
Does adding a bar button item to the navigation bar programmatically when offering scene support differ from the old app delegate approach
I have used the following code for years to add a right bar button item to the navigation bar, but for some unknown reason, this no longer works. It stopped working when I updated my app to have Scene ...
1
vote
2
answers
91
views
How to detect touches on far right edge of navigation bar
I have a UIBarButtonItem assigned to navigationItem.rightBarButtonItems, and I would like the user to be able to tap all the way over to the right edge and have it respond. The Apple Notes app does ...
0
votes
1
answer
151
views
SwiftUi Is there a way to hide a toolbar without affecting background view
When I click the side menu, the toolbar will be hidden but all background will be moved up.
var body: some View {
NavigationStack {
ZStack {
VStack {
...