I want a logo to be present throughout my app. My entire app has an embedded Navigation Controller so I figured that I could set this image in the app delegate like so:
let logo = UIImage(named: "logo")
let imageView = UIImageView(image:logo)
UINavigationBar.appearance().topItem?.titleView = imageView
But it doesn't appear to be working. Is there something that I am doing wrong?