views:

78

answers:

1

I have a RootViewController that is loading a UITableViewController from an external NIB. I am not sure how I can add a toolbar to the RootViewController so that it appears on top of the UITableViewController? When I drag a UIToolbar onto my screen, it replaces the UITableView

A: 

Good tutorial on this... http://cocoawithlove.com/2009/05/intercepting-status-bar-touches-on.html

just have to comment out the code that shifts the y-location of the tableview down (or up, however you use it) and instead just lets the new view come over top of the tableview controller.

iWasRobbed