I\'ve got a custom view inside of a UIBarButtonItem, set by calling -initWithCustomView.
My bar button item renders fine, but when I tap it, it doe
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.