Tab bar not showing icons?
Problem With Storyboard References and Missing Tab Bar Icons
If you have Storyboard References attached to your Tab Bar Controller you will notice that the storyboard reference actually has a UITabBarItem on it:
Do not set the properties for this "fake" UITabBarItem!
Your settings will do nothing at all when you run the app. The values you provide ONLY affect what you see in Interface Builder, not your app when you run it.
Solution
What you need to do is go to the ACTUAL view controller that your storyboard reference is pointing to. That view controller will also have a UITabBarItem on it. This is the "real" UITabBarItem. Set your properties (icon, title, etc.) there and you will see them show when you run the app.
I had the same problem. My mistake was I did set the Selected Image
in the "Tab Bar Item", but I did not set the Image
property.
So, the tab bar icon was showing up in the child views [in storyboard] but was not showing up in the parent view (i.e. TabBarController).
Don't forget to set Selected Image property and Image property inside tab bar item and bar item category respectively!
I have attached image describing connections:
Connect TabBar Controller to your five View Controllers
For each View Controller, select any View Controller -> Go to Editor in Xcode options at top -> Embed In -> Navigation Controller
- Select bottom bar in Navigation Controller -> open Attribute Inspector in Utilities -> provide the your title and image as highlighted in image
Navigation from Login/Register to TabBar Screen: Provide the Storyboard ID to TabBarController eg. "TabBarController" and create the TabBarController instance using Storyboard ID of corresponding Storyboard.
Swift 3
func navigateToTabBar() {
let storyBoard : UIStoryboard = UIStoryboard(name: "Main", bundle:nil)
let nextViewController = storyBoard.instantiateViewController(withIdentifier: "TabBarController") as UIViewController
self.present(nextViewController, animated:true, completion:nil)
}