I have deployed UITabBarViewController & I have populated 3 Tabs with different ViewControllers.
I want to remove Icons from TabBar & want to keep just Text. Make text center allgn Vertically in TabBar.
I currently naming Tabs like this in viewDidLoad:
self.tabBarController?.tabBar.items?[0].title = "tab 1"
self.tabBarController?.tabBar.items?[1].title = "tab 2"
self.tabBarController?.tabBar.items?[2].title = "tab 3"