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:
code:
private func removeText() { if let items = yourTabBarVC?.tabBar.items { for item in items { item.title = "" } } }