I have a UITableViewController that is embedded into a NavigationController, see below:
And here is how I added in my image in the title:
navigationItem.titleView = UIImageView(image: Views.navigationBarLogo)
However, I have another UITableViewController create programmatically and of course the image in the navigation controller would disappear, is there a way to add in the image without repeating my code above.
Thanks!