Simple question, how can I remove the tab bar item text and show only the image?
I want the bar items to like in the instagram app:
make a subclass of UITabBarController and assign that to your tabBar , then in the viewDidLoad method place this line of code:
tabBar.items?.forEach({ (item) in item.imageInsets = UIEdgeInsets.init(top: 8, left: 0, bottom: -8, right: 0) })