0

This is driving me crazy! I am creating a segue from one of the UITableViewCells to another UITableViewController. A Navigation controller sits between them as shown in the screenshot below:

enter image description here

When I reach the Samples UITableViewController it appears without the NavigationBar as shown below:

enter image description here

Am I doing something wrong?

john doe
  • 9,220
  • 23
  • 91
  • 167

1 Answers1

1

Your first UITableViewController is in a navigation controller too right ? If not, it's normal, see this post. If your first UITableViewController is in a navigation controller, I had the same problem, if you use the push segue (deprecated) it should resolve your problem.

Community
  • 1
  • 1
las
  • 288
  • 2
  • 8
  • Thanks! You will not believe it! In the parent view controller there was some code hiding the Navigation bar! Opps! – john doe Feb 23 '15 at 17:11