Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a custom view inside of a UIBarButtonItem, set by calling -initWithCustomView.

OK, so the view renders fine, but when I tap it, it doesn't call the method that I set as the UIBarButtonItem's action property.

Oh, and I have verified that my -deselectAll method works fine.

Keep in mind that I am not using Interface Builder and I am sure that the method signature is correct

Here's my code:

 UIImageView *SOCImageView = [[ UIImageView alloc ] initWithImage:[ UIImage imageNamed: @"cancel_wide.png" ] ];
 SOItem.leftBarButtonItem = [[ UIBarButtonItem alloc ] initWithCustomView: SOCImageView ];
 [ SOCImageView release ];
 [ SOItem.leftBarButtonItem setTarget: self ];
 [ SOItem.leftBarButtonItem setAction: @selector( deselectAll ) ];

Thanks a million

share|improve this question

8 Answers

up vote 33 down vote accepted

I do not think the target and action of the UIBarButtonItem apply to custom views. Try using a UIButton instead of UIImageView and applying the target and action to the button.

share|improve this answer
@drawnonward, Thanks so much! – Jacob Relkin May 9 '10 at 3:25
6  
Thanks. UIBarButtonItem inherits from UIBarItem and NSObject so it doesn't know anything about touches. It would be nice if the docs mentioned that the action and target properties only apply if the custom view is a UIButton. – Jason Moore Nov 18 '11 at 15:48
1  
@JasonMoore: better yet, it'd be nice if buttons acted like... buttons. If it behaved the way a programmer expects it to, there's no need for the extra documentation. – GeneralMike Dec 17 '12 at 18:43

Here is how I make it worked :

UIButton* infoButton = [UIButton buttonWithType: UIButtonTypeInfoLight];
[infoButton addTarget:self action:@selector(displayAboutUs) forControlEvents:UIControlEventTouchDown];

UIBarButtonItem* itemAboutUs =[[UIBarButtonItem alloc]initWithCustomView:infoButton];
…
share|improve this answer

I had a similar problem. And I initially followed the path suggested by @drawnonward, but then ran into trouble when I tried to have my action present a popover controller on an iPad: Using an embedded UIButton as a custom view means the UIButton is the sender of the event, and the popover controller’s presentPopoverFromBarButtonItem: method crashes when it tries to send it messages which are only appropriate to actual UIBarButtonItems.

The solution I eventually found was to steal the image I wanted to use (the “info” icon) from a throwaway UIButton, and construct my UIBarButtonItem as follows:

// Make the info button use the standard icon and hook it up to work
UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
UIBarButtonItem *barButton = [[[UIBarButtonItem alloc]        
      initWithImage:infoButton.currentImage
              style:UIBarButtonItemStyleBordered
             target:self
             action:@selector(showInfo:)] autorelease];

Using this initializer yields a bar button whose target and selector actually work. It is also easier than wrapping the image in a custom view, but that is just icing.

share|improve this answer
This solved it for me! For use with a popover, use this: [myPopover presentPopoverFromBarButtonItem: sender permittedArrowDirections: UIPopoverArrowDirectionAny animated: YES]; – mpemburn Jun 8 '12 at 22:04

Here's how I implemented the UIButton inside of the UIBarButtonItem:

UIButton *logoButton = [UIButton buttonWithType:UIButtonTypeCustom];
[logoButton setImage: [UIImage imageNamed:@"icon.png"] forState:UIControlStateNormal];
logoButton.frame = CGRectMake(0, 0, 30, 30);
[logoButton addTarget:self action:@selector(showAbout:) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *barItem = [[UIBarButtonItem alloc] initWithCustomView:logoButton];
self.navigationItem.rightBarButtonItem = barItem;
[barItem release];
share|improve this answer

I had the same problem, but was averse to using a UIButton instead of a custom view for my UIBarButtonItem (per drawnonward's response).

Alternatively, you could add a UIGestureRecognizer to the custom view before using it to initialize UIBarButtonItem; this appears to work in my project.

This is how I would modify your original code:

UIImageView *SOCImageView = [[UIImageView alloc] initWithImage:
                             [UIImage imageNamed:@"cancel_wide.png"]];

UITapGestureRecognizer *tapGesture = 
       [[UITapGestureRecognizer alloc] initWithTarget:self 
                                               action:@selector(deselectAll:)];
[SOCImageView addGestureRecognizer:tapGesture];

SOItem.leftBarButtonItem = 
       [[UIBarButtonItem alloc] initWithCustomView:SOCImageView];
[SOCImageView release];
share|improve this answer

Jacob, everything looks good, however you may not have provided the correct selector.

Can you verify that your action is actually declared

- (void) deselectAll;

and not

- (void) deselectAll:(id)sender;

If it's the latter, you will need to set the action to @selector(deselectAll:). (note the semi-colon to match the method declaration)

Also, void might be IBAction, but that's not relevant to this problem you're having.

share|improve this answer
@ohhorob, I'm positive about the method signature. – Jacob Relkin May 9 '10 at 2:54
@ohhorob, I'm also not using IB ;) – Jacob Relkin May 9 '10 at 2:56
also check that the instance you are setting as the target is not being released & dealloc'ed. Is it a navigation controller subclass or another view controller in the nav hierarchy? – ohhorob May 9 '10 at 2:58
@ohhorob, This code is within a view controller that is not being released. – Jacob Relkin May 9 '10 at 3:00
how did you confirm deselectAll is not being called? By setting a debugger breakpoint, or do you just not see the expected results? – ohhorob May 9 '10 at 3:05
show 4 more comments

Is your custom view eating touch events or passing them on to parent view?

share|improve this answer
as you can see, my custom view is just a plain ol' UIImageView. So, it's not eating any events, no. – Jacob Relkin May 9 '10 at 2:59

To make this easy to work with, I created a category on UIBarButtonItem which looks like this:

@implementation UIBarButtonItem (CustomButtonView)

- (void)setButtonImage:(UIImage *)image
{
    UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
    [button setBackgroundImage:image forState:UIControlStateNormal];
    [button sizeToFit];
    [button addTarget:self.target action:self.action forControlEvents:UIControlEventTouchUpInside];
    self.customView = button;
}

- (UIImage *)buttonImage
{
    return [(UIButton *)self.customView imageForState:UIControlStateNormal];
}

@end

In your client code, simply use:

myBarButtonItem.buttonImage = [UIImage imagedNamed:@"image_name"];

Done this way you can still hook up your targets and actions in IB (pushing as much UI config into IB as you can is a Good Thing).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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