Hi, I’m running into a weird Liquid Glass / UITabBar issue on iOS 26 and I’m wondering if anyone has seen this before. My app is light mode only (UIUserInterfaceStyle is set to Light in Info.plist, dark mode disabled). The issue only seems to happen when the light tab contains a UITableView. If I replace the table view with a plain white UIViewController, the issue disappears. Behavior: I have a light tab containing a UITableView I switch to a dark tab When switching back to the light tab, the tab bar sometimes keeps a dark Liquid Glass tint instead of returning to the light appearance Short video showing the issue: https://github.com/user-attachments/assets/d06bbbdd-efe3-4cfc-b596-a8ab89684c96 Minimal repro: import UIKit final class TabBarController: UITabBarController { override func viewDidLoad() { super.viewDidLoad() let light = LightController() light.tabBarItem = UITabBarItem( title: "Light", image: UIImage(systemName: "list.bullet"), tag: 0 ) let dark = DarkController()…