vote up 0 vote down star
2

I would like to dynamically hide a button in one of my views, depending on a certain condition.

I tried adding some code to the view controller's -viewWillAppear method, to make the button hidden before displaying the actual view, but I still don't know how to do that.

I have a reference to the button through an IBOutlet, but I'm not sure how to move forward from here. For reference, this is a UIBarButtonItem instance.

flag

3 Answers

vote up 6 vote down check

If you're trying to hide a UIBarButtonItem, you'll actually have to modify the contents of the parent bar. If it's a UIToolBar, you'll need to set the bar's items array to an array that doesn't include your item.

NSMutableArray     *items = [[myToolbar.items mutableCopy] autorelease];
[items removeObject: myButton];
myToolbar.items = items;
link|flag
vote up 0 vote down

Just set the button's hidden property to true:

myButton.hidden = YES;
link|flag
Ben, thanks for the answer, but it doesn't seem to be working. When I do myButton.hidden = YES; I get a compiler error: "error: request for member 'hidden' in something not a structure or union" myButton is a UIBarButtonItem, for reference. – jpm Nov 10 '08 at 3:29
vote up 0 vote down

Set the bar item to nil.

For example:

self.navigationItem.leftBarButtonItem = nil;
link|flag

Your Answer

Get an OpenID
or

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