What is the (id)sender for in:

-(IBAction)action:(id)sender;

Thanks for your help!

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

It is whatever object has called the action method; e.g., a button.

You can use the id to check which of a set of buttons called the action, for instance.

link|improve this answer
feedback

It identifies (and references) the control object that sent the action message.

link|improve this answer
feedback

From the target-action design pattern:

The sender parameter is the control object sending the action message. When responding to an action message, you may query sender to get more information about the context of the event triggering the action message.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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