Swift version: 5.6
Once you’ve placed a view controller inside a navigation controller, you’ll see that Interface Builder simulates a navigation bar at the top of that view controller. If you select it, what you actually select is the navigation item for that controller – the same thing you would get if you were manipulating its navigationItem
property.
You can add a UIBarButtonItem
directly to that navigation item if you want, then connect it to up to a method in your code. To try it out, look in the object library for Bar Button Item, then drag it over the simulated navigation bar. As you move over the left and right sides you should see those slots glow blue signaling that you can drop there, but you can also add more than one item in which case you’ll see insertion lines appear showing whether the new button will be added before or after existing buttons.
Drop a button on the right-hand side of the navigation bar, then switch to the assistant editor so we can connect it to some code. Ctrl-drag from your new bar button item into your source code, and when you release your mouse button change Connection from “Outlet” to “Action”. Give it a name - e.g. “saveTapped” – and Xcode will generate a method that will be called when the button is tapped.
SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until October 1st.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 5.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.