UITabBarController got custom tab bar implementation
TabBarController
UITabBarController got custom tab bar implementation! ?
How to use
First you should create the tabs:
final class MainScreenTabs: ScreenTabs {
var viewControllers: [UIViewController] {
[
// put your UIViewControllers here
]
}
}
You can create a BaseTabBarController
:
let tabBarController = BaseTabBarController<MainScreenTabs>(tabBarView: AdaptiveTabBar(selectedColor: .red, unselectedColor: .blue))
addChild(tabBarController)
tabBarController.view.frame = view.bounds
view.addSubview(tabBarController.view)
tabBarController.didMove(toParent: self)
And then select the tab at any time programmatically:
tabBarController.setSelectedIndex(index: 2)
For details see the Example app.