user979331
user979331

Reputation: 11851

Xcode 6 - Storyboard UINavigation Back Button not appearing in app

I have a NavigationController embedded within a TableViewController:

enter image description here

My Issue I am having is I can't get the back button to appear in my app :(

enter image description here

Is there a step I am missing here ?

Upvotes: 0

Views: 60

Answers (1)

Silviu St
Silviu St

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

Related Questions