12,509 questions
0 votes
0 answers
22 views
Custom UITabBar badge color ignored when switching to Map tab in iOS 18+
I found a reproducible issue in iOS 18+. When a SwiftUI TabView contains a Map (MKMapView), any custom UITabBarAppearance badge color is ignored while that tab is active. As soon as you switch to a ...
1 vote
0 answers
57 views
How to achieve a frosted glass label effect like iOS 26 system
I want to create a label like my upload img` time label I have searched through the iOS documentation and did not find any relevant information. How should I write the code? By the way, I am using ...
0 votes
0 answers
31 views
UIKit Toolbar showing behind tabbar in ios26
See SWiftUI Problem. I'm seeing now the same problem with UIKit. Here are a couple of screen shots: Here's a very basic Scene Delegate that creates a tab controller with three view controllers. The ...
1 vote
1 answer
52 views
UIVisualEffectView with UIGlassEffect with only 2 rounded corners
Trying to make a sheet-like view that attaches at the bottom to another view so I'd like to have only the top two corners rounded. This works for a blurred effect: let glassView = UIVisualEffectView(...
-1 votes
0 answers
108 views
iOS 26.1 adds dark tint under transparent tab bar and ui elements (worked correctly in iOS 26)
After updating from iOS 26 to iOS 26.1, all my transparent system elements (i.e. UITabBar, UIBarButtonItem) started rendering with a dark background tint. In iOS 26 the same configuration looked fully ...
1 vote
0 answers
40 views
How to present an action sheet without an arrow from a UIButton in iOS 26?
I'm trying to present an action sheet from a regular UIButton on iOS 26 without showing the popover arrow. What I’ve tried so far: I watched the WWDC 2025 session “Build a UIKit app with the new ...
-1 votes
0 answers
60 views
Liquid Glass UINavigationBar's UIBarButtonItem Coloring
I have a UINavigationBar with 3 UIBarButtonItems on a background that can be different colors. Liquid Glass gives these buttons a very light not very clear background color, ruining the aesthetic. ...
Advice
0 votes
0 replies
32 views
Implementation of view that covers predictive text panel
I am trying to place a custom view so that it will cover, partially, predictive text panel from the iOS keyboard. However i can't seem to manage implementing it, the predictive text panel is always ...
-1 votes
0 answers
95 views
iOS 26 to 26.1 broke glassy navigation bars: UIBarButtonItems turn black in UIViewController but stay translucent in UITableViewController [closed]
In iOS 26.0, my navigation bars and UI controls (pickers, date pickers, bar button items) were rendered in a beautiful, glassy, translucent style. After updating to iOS 26.1: UIBarButtonItems became ...
-1 votes
0 answers
33 views
UISwitch doesnt switch in snapshot testing [closed]
In snapshots UISwitch doesnt switch to ride side, when i make it display(isOn: false) Its just placed on the left side, but the color is gray, like its disabled. How can i snapshot my UISwitch with ...
0 votes
0 answers
17 views
Problems with Customizing UICollectionViewFlowLayout
I’m building a custom UICollectionViewFlowLayout where each cell is stacked with partial overlap, I am using UICollectionViewLayoutAttributes to add frame, zindex and other attributes to each cell , I ...
0 votes
0 answers
58 views
How to make iOS render a screen at the external display resolution on both iPhone and external display?
I have an issue where the "ExternalDesktopView" is being rendered at iPhone resolution at full screen and on the TV. For example, it appears like normal iPhone mirroring like a huge black ...
1 vote
1 answer
179 views
How to Enable Multitouch on ARView
How to enable multitouch on ARView? Touch functions (touchesBegan, touchesMoved, ...) seem to only handle one touch at a time despite setting isMultipleTouchEnabled = true. In order to handle multiple ...
1 vote
0 answers
52 views
Missing delegate callbacks when text is auto-replaced (suggested words or double-space “.” shortcut)
I’ve built a custom text editor using TextKit 2, and I’ve noticed that some text changes triggered by the system keyboard are not traceable through the usual delegate methods or text editing lifecycle....
0 votes
0 answers
52 views
Swiping UIPageViewController results in NSInternalInconsistencyException when padding is applied
I have an InfinitePager implementation that uses UIPageViewController under the hood. It works all good when the InfinitePager is taking up the full height of the screen. However, if it's not full ...