Reputation: 11851
I have a NavigationController
embedded within a TableViewController
:
My Issue I am having is I can't get the back button to appear in my app :(
Is there a step I am missing here ?
Upvotes: 0
Views: 60
Reputation: 1842
Back button appears only after you push a ViewController
over another one.
In this image you only set the RootViewController of your NavigationController so you have nowhere to go back so that's why back button does not appear.
You can still put programatically a button that does what you need.
Upvotes: 1