12,492 questions
0
votes
0
answers
13
views
UIBarButtonItem with `.done` style on iOS 26 does not update appearance when disabled
I the following UIBarButtonItem which is placed in my view controller's navigation item's rightBarButtonItem slot.
private lazy var sendButton = UIBarButtonItem(
title: "Send",
style:...
0
votes
0
answers
20
views
iOS 26: FloatingBarContainerView overlapping the whole custom ViewController [closed]
I'm experiencing an issue in iOS 26. I've implemented a custom ViewController. It's super simple to edit images with flip, crop, zoom in, and zoom out. My question is that it seems very strange to me. ...
0
votes
0
answers
100
views
Custom font is not working in SwiftUI but working in UIKit
we use Custom font for rendering Icons in project. In UIKIT everything works fine, but in swiftUI, created a new font like below.
extension Font {
static func fontIcon(_ size: CGFloat) -> Font {
...
-1
votes
2
answers
123
views
+200
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 ...
0
votes
0
answers
195
views
iOS 26 UITabBar Tab Item Color in Liquid Glass Incorrect [closed]
Is there a specific color I need to set my tab item color to to support auto-adaptive color based upon what's underneath the UITabBar?
I'm experiencing behavior currently where my unselected items are ...
0
votes
0
answers
58
views
iOS 26 Custom Keyboard pushed upward for <1 second when switching keyboards
I am building a custom iOS keyboard using UIInputViewController with UIStackView for layout.
There is a strange UI glitch when switching keyboards (e.g. to emoji or system keyboard):
The custom ...
1
vote
1
answer
198
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 ...
0
votes
1
answer
36
views
Mac-catalyst remove tabbing
I developed my App originally with Xcode 12.4, meaning mac-catalyst 13.6 and/or iOS 13.6.
However, after upgrading to Xcode 16.4, meaining mac-catalyst 15.x, now the Root-window suddenly shows tabbing:...
3
votes
2
answers
222
views
Passthrough UIWindow using SwiftUI in iOS 26
I'm having an issue with iOS 26 and using a "passthrough" UIWindow (it's used for global overlay, like showing notifications in the app).
The code was working fine in iOS 18 but something (...
1
vote
1
answer
767
views
Can you change the way iOS 26 renders buttons on UINavigationBar?
Since updating my Xcode and building my app for iOS 26, the buttons on the UINavigationBar look terrible, in my opinion, with large rounded rectangles around them. Can anything be done to revert these ...
4
votes
1
answer
1k
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 ...
0
votes
2
answers
75
views
How to make UIView fit the size of its contents?
I have the following code
func setupUI() {
self.view.backgroundColor = .white
let titleLbl = UILabel()
titleLbl.text = book.title
titleLbl.textColor = .black
...
-5
votes
1
answer
93
views
Can't see ratings prompt
I have the following code to show a ratings prompt when the user comes back to the app a second time and hasn't seen the prompt. It asks the user to rate my app in the app store. I'm on the latest ...
1
vote
2
answers
50
views
Function Calling itself Multiple Times without any Apparent Reason
I’m working on an iOS app where I have an AnyArtboardEvent method that pushes snapshots into my undo/redo stack.
Here’s a simplified version of it:
func AnyArtboardEvent(mergedImaged: UIImage = ...
2
votes
0
answers
212
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 ...