I have a UIViewController
where I load a picture from internet and I want to display it as the navigation titleView.
Here is my code when I have finished fetching the picture from internet
Code Snippet :
let imgView = UIImageView(frame: CGRect(x: 0, y: 0, width: 40, height: 40))
imgView.backgroundColor = UIColor(red: 0.5, green: 0.5, blue: 0, alpha: 0.3)
imgView.image = result.image! //Contains the picture from internet
imgView.contentMode = .ScaleAspectFit
self.navigationItem.titleView = imgView
And here is the result: