Short answer: You cannot pass extra information into the method directly.
Why would you want to do that anyway though? What does the button "know" that it would need to communicate, other than the fact that it was clicked?
The way this should be done is via an instance variable in the class that implements the click handler.
If you really must maintain state inside the button itself, subclass it:
@interface CustomButton : UIButton
@property (nonatomic, assign) BOOL myBoolValue;
@end
/* ... */
- (void)addClicked:(id)sender
{
CustomButton *button = (CustomButton *)sender;
if (button.myBoolValue) {
// Whatever you want to do.
}
}
tagproperty, used to distinguish between various controls orUIViewobjects. If you need some other boolean, you could presumably subclassUIButton, add your own boolean property, and read that in addClicked (but then again, you could accomplish that via some ivar, too). – Rob Aug 2 '12 at 3:46tag, you could subclassUIButtonwith your ownBOOLproperty, as michael_mackenzie has demonstrated. – Rob Aug 2 '12 at 4:02