xcode/storyboard: can't drag bar button to toolbar at top xcode/storyboard: can't drag bar button to toolbar at top ios ios

xcode/storyboard: can't drag bar button to toolbar at top


I have got the same problem using Xcode6 and I noticed that UINavigationItem is added automatically for the first ViewController that you embed into NavigationController but for the subsequent ViewControllers, you will have to add it manually as follows:

  1. In the Object library, find Navigation Item then drag it to your2nd ViewController in the storyboard.
  2. In the Object library, findBar Button Item then drag it the navigation item that you have created in the previous step.

Now you will have your Bar Buttons stuck to the top of your scene.

UpdateThe solution still works with XCode 7 but I wanted to add more descriptive photo. Just in case anyone is not really familiar with standard or technical names mentioned above. Notice the red arrows in the right, they refer to step 1, step 2 mentioned above. Also note the hierarchy of views on the left red rectangle. enter image description here


Nasty trick:

  1. Change your segue to push.
  2. Set the content you need
  3. Set back to show

Then the content will be editable and you have a non deprecated style for segue.


Your storyboard's view controller is likely missing a Navigation Item. You can drag one from the Object library, and drop it on your view controller.

You'll then be able to drag and drop bar button items onto the left or right side of the navigation bar.