I've created a storyboard based UITableViewController
which is working and displaying data.
I now need to add a toolbar that will always be at the bottom of the screen. To do this I have added a toolbar button to my storyboard which has it positioned at the bottom of the screen.
I have added the following to my tableviewcontrollers viewWillAppear method
[self.navigationController setToolbarHidden:NO];
As described here How to add a toolbar to the bottom of a UITableViewController in Storyboards?
However, I still get no toolbar...any ideas?