I have added a UIBarButtonItem in IB. I am trying to change its image to a custom maximize/minimize graphic. How can I change the button's image in the viewDidLoad method? Is there a default maximize/minimize style I can choose from within IB?

link|improve this question

72% accept rate
feedback

1 Answer

If you don't have the images until run-time, you can create a new bar button item and replace the items in the toolbar or set the right/left item of a controller in a navigation stack.

NSMutableArray *items = [[self.toolbar items] mutableCopy];
[items removeObjectAtIndex:0];
[items insertObject:barButtonItem atIndex:0];
[self.toolbar setItems:items animated:YES];
[items release];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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