SThakur
SThakur

Reputation: 282

UITabBarController's TabBar items title are not visible in Xib

I have UITabBarController which has 3 UITabBarItems . I have set the title for all these items, these items are tappable & receiving the event but not showing the title.

enter image description here enter image description here

Upvotes: 0

Views: 939

Answers (1)

Love Kumar
Love Kumar

Reputation: 48

Inside your view hierarchy, I can see that there are different viewcontrollers. You should try setting the tab bar title and it's image programmatically for each controller.

viewcontroller.tabBarItem.title = "Dash" viewcontroller.tabBarItem.image = UIImage.init(named: "imageName") viewcontroller.tabBarItem.selectedImage= UIImage.init(named: "imageName")

Upvotes: 1

Related Questions