Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding action and target to a custom Navigation BarButtonItem?

I am trying to customize the Navigation Bar by adding a custom button to the rightBarButtonItem. Creating one is pretty straight forward.

UIImage *myImage = [UIImage imageNamed:@"menu-icon.png"];

UIButton *myButton = [UIButton buttonWithType:UIButtonTypeCustom];
[myButton setFrame:CGRectMake(0, 0, myImage.size.width, myImage.size.height)];
[myButton setBackgroundImage:myImage forState:UIControlStateNormal];

UIBarButtonItem *myButtonItem = [[UIBarButtonItem alloc] initWithCustomView:myButton];

[navItem setLeftBarButtonItem:myButtonItem animated:YES];

Looks good, except that now I can't set the target or action properties. The following code does nothing:

myButtonItem.target = myTarget;
myButtonItem.action = @selector(myButtonAction);

I found that the reason it's not working is because I initialized the UIBarButtonItem with -initWithCustomView. Apples documentation says:

The bar button item created by this method does not call the action method of its target in response to user interactions. Instead, the bar button item expects the specified custom view to handle any user interactions and provide an appropriate response.

I'm a little confused by what exactly apple means by that. Am I supposed to create a custom control or something? I haven't really done that yet and I'm not sure where to start.

Does anyone have any suggestions on how to do this or an alternative way to set up a custom Navigation Bar Button?

ANSWERED----------------------------------------------------------

Just had to add this method to the UIButton:

[myButton addTarget:myTarget action:@selector(myButtonAction) forControlEvents:UIControlEventTouchUpInside];
like image 411
denvdancsk Avatar asked Jul 31 '13 19:07

denvdancsk


1 Answers

It's pretty straight forward, you need to add target for uibutton not for uibarbuttonitem.

To explain more what you want for uibarbuttonitem is respond touch up inside action method, as documentation says that you need to do that for uibutton as you are initializing your uibarbuttonitem with custom view in your case uibutton.

like image 80
limon Avatar answered Nov 15 '22 06:11

limon