I have been using the pattern of counting to check when I need to load or hide certain tabs. For example: `tabBarController.viewControllers?.count != Tab.all.count` (similar to https://newsletter.masilotti.com/p/hotwire-native-deep-dive-authentication), but after the 1.3 update `tabBarController.viewControllers` is always `nil` with no optional count, and this pattern no longer works. Before I change my pattern, is this being experienced by anyone else and/or is this expected? Thanks!
v1.3.0 moved this to tabBarController.tabs to work with iOS 26’s UISearchTab API. That might only be available on 18+, so you can gate it with an #if statement!
Thanks y'all! I am so excited to update! 🥳
I have been using the pattern of counting to check when I need to load or hide certain tabs. For example: `tabBarController.viewControllers?.count != Tab.all.count` (similar to https://newsletter.masilotti.com/p/hotwire-native-deep-dive-authentication), but after the 1.3 update `tabBarController.viewControllers` is always `nil` with no optional count, and this pattern no longer works. Before I change my pattern, is this being experienced by anyone else and/or is this expected? Thanks!
v1.3.0 moved this to tabBarController.tabs to work with iOS 26’s UISearchTab API. That might only be available on 18+, so you can gate it with an #if statement!
Wonderful! I'll give that a try! Thanks!