Adding multiple custom bar buttons to custom nav bar
I need to add two bar button items to each end of my custom navigation bar in Swift. I'm using the following method, and although I get no errors, nothing at all is appearing. I'm using my own custom icons, which do appear when I add them using interface builder. Obviously, I can only add one to each end that way. @IBOutlet weak var navBar: UINavigationBar! override func viewDidLoad() { var iconOne = UIImage(named: "iconOne") var iconTwo = UIImage(named: "iconTwo") var buttonOne:UIBarButtonItem = UIBarButtonItem(image: iconOne, style: UIBarButtonItemStyle.Plain, target: self, action: nil) var