I'm adapting a UIKit app to work with Liquid Glass. In pre-Liquid Glass days, the application window had a tintColor
that was passed down to all of its descendant views, resulting in toolbar buttons that match the app's color scheme.
In iOS 26, my toolbar buttons are always black, no matter what. I've tried setting the UIBarButtonItem#tintColor
on the button and setting UIBarButtonAppearanc#tintColor
.
The buttons are still black. What am I doing wrong? I see a tintColor
modifier for SwiftUI toolbar buttons, so it seems like maybe you can do this with SwiftUI.
Many of the built-in apps on iOS 26 beta have only black toolbar buttons - is it not possible to change the toolbar button tint color on iOS 26?