UIToolbar not showing UIBarButtonItem
I'm using a storyboard and I've a split view where the master is a UITableViewController. Like the iPad Mail app, I'd like to display a UIToolbar. I wasn't able to add the toolbar via storyboard but I managed to add it programmatically. I'm also able to add a UILabel to the toolbar, but I can't find a way to add a refresh button or any kind of UIBarButtonItem. Any idea? - (void)viewDidLoad { [super viewDidLoad]; [self.navigationController setToolbarHidden:NO]; UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(50.0f, 0.0f, 80.0f, 40.0f)]; label.text = @"last updated..."; label