Swift version: 5.10
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 Alex is the iOS & Mac developer’s ultimate AI assistant. It integrates with Xcode, offering a best-in-class Swift coding agent. Generate modern SwiftUI from images. Fast-apply suggestions from Claude 3.5 Sonnet, o3-mini, and DeepSeek R1. Autofix Swift 6 errors and warnings. And so much more. Start your 7-day free trial today!
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.