I'm trying to add a label to my toolbar. Button works great, however when I add the label object, it crashes. Any ideas?

UIBarButtonItem *setDateRangeButton = [[UIBarButtonItem alloc] initWithTitle:@"Set date range"
                                                                       style:UIBarButtonItemStyleBordered
                                                                      target:self
                                                                      action:@selector(setDateRangeClicked:)];

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(5, 5, 20, 20)];
label.text = @"test";

[toolbar setItems:[NSArray arrayWithObjects:setDateRangeButton,label, nil]];

// Add the toolbar as a subview to the navigation controller.
[self.navigationController.view addSubview:toolbar];

// Reload the table view
[self.tableView reloadData];
link|improve this question
feedback

3 Answers

up vote 58 down vote accepted

Have a look into this

[[UIBarButtonItem alloc] initWithCustomView:yourCustomView];

Essentially every item must be a "button" but they can be instantiated with any view you require. Here is some example code. Note, since other buttons are typically on the toolbar, spacers are placed on each side of the title button so it stays centered.

NSMutableArray *items = [[self.toolbar items] mutableCopy];

UIBarButtonItem *spacer = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
[items addObject:spacer];
[spacer release];

self.titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0.0 , 11.0f, self.view.frame.size.width, 21.0f)];
[self.titleLabel setFont:[UIFont fontWithName:@"Helvetica-Bold" size:18]];
[self.titleLabel setBackgroundColor:[UIColor clearColor]];
[self.titleLabel setTextColor:[UIColor colorWithRed:157.0/255.0 green:157.0/255.0 blue:157.0/255.0 alpha:1.0]];
[self.titleLabel setText:@"Title"];
[self.titleLabel setTextAlignment:UITextAlignmentCenter];

UIBarButtonItem *spacer2 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
[items addObject:spacer2];
[spacer2 release];

UIBarButtonItem *title = [[UIBarButtonItem alloc] initWithCustomView:self.titleLabel];
[items addObject:title];
[title release];

[self.toolbar setItems:items animated:YES];
[items release];
link|improve this answer
8  
Note that if you chose to go this route you must style your label appropriately (label.backgroundColor = [UIColor clearColor], etc). You can also init a UIBarButtonItem to be styled Plain which will give you a similar look – wisequark Dec 2 '08 at 18:27
Thank you! I got the idea. – Boolean Dec 2 '08 at 18:59
I know this is a really old post, but I have a question about this answer. Once this is done, is there any way to access the titleLabel later to change it, or is it impossible since everything has been released? – Ryan Nov 28 '11 at 21:47
Ryan, the UILabel probably still exists -- it's self.titleLabel. This example needs a property declared and synthesized for UILabel *titleLabel, but that code isn't shown. If you have access to the object (probably a UIViewController) that runs this code, you can access its titleLabel. E.g., you could add a method on the view controller, pass in the new title you want, and then call [self.titleLabel setText:newTitle]. – Steve Liddle Dec 2 '11 at 16:52
feedback

For those using Interface Builder to layout your toolbar, it is also possible to do this using Interface Builder alone.

To add a label to a toolbar you need to add a generic UIView object to your Toolbar in IB by dragging a new UIView object over your UIToolbar. IB will automatically create a UIBarButtonItem that will be initialized with your custom UIView. Next add a UILabel to the UIView and edit the label graphically to match your preferred style. You can then visually set up your fixed and/or variable spacers as desired to position your label appropriately.

You must also set the background of both the UILabel and the UIView to clearColor to get the toolbar to show through correctly under the label.

link|improve this answer
Nice trick, didn’t know you can do it in Interface Builder. Thank you very much. – Rafael Jan 10 '11 at 18:59
Is there a way to add a UIButton with custom image using that method? I can add a UIButton, but the image doesn't show up. – cannyboy Mar 29 '11 at 16:28
Much more sensible to do this in interface builder. Most of the time, it's much easier to maintain a toolbar in interface builder than it is using code. – Jacob Apr 15 '11 at 1:17
feedback

One of the things I'm using this trick for is to instantiate a UIActivityIndicatorView on top of the toolbar, something that otherwise wouldn't be possible. For instance here I have a toolbar with 2 UIBarButtonItems, a Flexible Space Bar Button Item, and then another UIBarButtonItem. I want to insert a UIActivityIndicatorView into the toolbar between the flexible space and the final (right-hand) button. So in my RootViewController I do the following,

- (void)viewDidLoad {
[super viewDidLoad];// Add an invisible UIActivityViewIndicator to the toolbar
UIToolbar *toolbar = (UIToolbar *)[self.view viewWithTag:767];
NSArray *items = [toolbar items];

activityIndicator = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 20.0f, 20.0f)];
[activityIndicator setActivityIndicatorViewStyle:UIActivityIndicatorViewStyleWhite];	

NSArray *newItems = [NSArray arrayWithObjects:[items objectAtIndex:0],[items objectAtIndex:1],[items objectAtIndex:2],
					 [[UIBarButtonItem alloc] initWithCustomView:activityIndicator], [items objectAtIndex:3],nil];
[toolbar setItems:newItems];}
link|improve this answer
This code leaks the memory allocated for the UIBarButtonItem with the custom activity indicator view. (It also leaks the activity indicator's memory, but I assume that's being released below the end of the code fragment. – erikprice May 19 '11 at 22:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.