I thought this would be a simple thing to do, but I'm having some issues with the title even showing up. I have a TabBarController, that manages 2 ViewControllers. The tabBarController is being presented view the show segue from a tableView that is embedded into a Navigation Controller. I've read different view points as to if this is correct or not. It seems to make sense from a UI view for me. Person clicks on table cell and is presented with more detail information about the table cell in a TabBar Controller View.
When I test the app, I don't see any title at all, even though I added one in the storyboard. I also added a nav button on the right side of the nav bar that doesn't show up at all either. See attached image.
To set the title I was trying to do something like this
self.title = "Some Title Name"
But again my title nor my button even shows up when testing the app. When I use the line of code above it changes the title of the tab that you tab on, not the title of the view controller.
Could this have something to do with the tabBar being part of the navigation controller, and therefore the controller is the one creating and populating the title bar, such as the back button that I can see. If this is the case, am I able to add a title and a button on the right side of the nav bar?

