Displaying UIToolbar in a UIViewController?
When I add a UIToolbar with a couple of embedded UIBarButtonItems to my view using Interface Builder, the UIToolbar does not display. I've confirmed that the toolbar does actually exist, by doing the following in my controller's loadView method:
NSLog(@"toolbar: %@",toolbar);
where toolbar is defined in my UIViewController subclass as:
IBOutlet UIToolbar* toolbar;
Anyone else have any success using Interface Builder to add a UIToolbar?
|