I would like to display the same toolbar items in every view of my app. Currently, before I push a view controller I set the toolbarItems property, to the value of the current view controller.
Would I be able to set the toolbarItems property of my navigation controller, and not worry about the toolbarItems property of my individual view controllers?
toolbarItemsproperty of a UINavigationController has no effect on its own toolbar. You should note that it is inherited from UIViewController and only effective if you put that navigation controller inside another navigation controller.To update the visible toolbar items, you should use
setToolbarItems:animated:method on the top view controller of the navigation controller.