Swift version: 5.10
Most UIBarButtonItems
contain either an icon or some text, but they can do so much more – in fact, you can embed any kind of UIView
subclass inside a bar button item, then put that button into a navigation bar or toolbar as you normally would.
For example, you can create a UIProgressView
and place it into a bar button like this:
var progressView = UIProgressView(progressViewStyle: .default)
progressView.sizeToFit()
let progressButton = UIBarButtonItem(customView: progressView)
SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's all new Paywall Editor allow you to remotely configure your paywall view without any code changes or app updates.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 2.0 – see Hacking with Swift tutorial 4
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.