In the current version of Xcode a few things seems to work a bit different. I have a little problem working with a simple navigation. This is what I do:
- I have a Storyboard with two scenes.
- I connect the scenes with a segue of type "Show".
- (In the past I did use "Push" but that is deprecated now.)
- I select the first scene and choose "Embed in Navigation Controller.
Now both scenes will get a gray bar at the top but only the first scene will also get a Navigation Item. Only for the first scene I am able to edit a title attribute and only for the first scene I am able to add a Bar Button.
Navigation itself works fine. The title of the first scene is the text of the Back-button in the second scene.
Why has the second scene no Navigation Item?
Is it because of the segue type?