I know how to add a UIToolbar, which I'm doing in rootviewcontroller.m:
[self.navigationController.view addSubview:toolbar];
However, when I navigate to other views, the toolbar stays up, which is ok, but how do I access it to hide/show it?
Inside rootviewcontroller I would use this:
toolbar.hidden = NO;
But I can't seem to find a way to do this outside of rootviewcontroller.m
Can you please show me an example of hiding it from another class?