I'm new to iPhone development, so I'm not sure if it is a very common issue. I didn't find anything about this on Google.

I have a UIBarButtonItem defined with Interface Builder:

@property (weak, nonatomic) IBOutlet UIBarButtonItem *cameraButton;

For now, it's just a simple button, but I want to put a camera image on it, using UIBarButtonSystemItemCamera. I know it's possible to do it with initWithBarButtonSystemItem, but I there is no method like changeWithBarButtonSystemItem. I'd like to something like:

- (void)viewDidLoad
{
  [super viewDidLoad];

  [cameraButton changeWithBarButtonSystemItem:UIBarButtonSystemItemCamera];
}

How is it possible ? Is there a way to tell Interface Builder to instantiate directly the button with this camera icon ?


Edit

It seems that it's not possible to change a button style after its instantiation. So only one question remains: Is there a way to tell Interface Builder to instantiate a button with UIBarButtonSystemItemCamera ?

link|improve this question

The "this question" link appears to refer to this document. Is that intended? – adamjansch Apr 30 at 15:39
Well its a bad copy-paste. Thanks for highlighting it. – ldiqual Apr 30 at 17:01
feedback

1 Answer

up vote 2 down vote accepted

In Interface Builder, change the UIBarButtonItem's "Identifier" to "Camera."

If you need to change buttons at run-time, the easiest thing is to swap out buttons themselves, not try to mutate them.

link|improve this answer
Thanks, it worked (of course) ! Just a little precision: by "swap out", do you mean that I have to delete it and add another button as it is immutable ? – ldiqual Feb 3 at 22:23
Yes. You could easily write a -replaceButton:withButton: method in a category on, e.g., UIToolbar to cleanly encapsulate this behavior, if you wanted. – Conrad Shultz Feb 3 at 22:32
That's a proper solution. Thanks ! – ldiqual Feb 3 at 22:34
feedback

Your Answer

 
or
required, but never shown

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