What is the (id)sender for in:
-(IBAction)action:(id)sender;
Thanks for your help!
|
What is the (id)sender for in:
Thanks for your help!
| ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
It identifies (and references) the control object that sent the action message. | ||||
|
feedback
|
|
From the target-action design pattern:
| |||
|
feedback
|