In some IBAction I saw:
- (IBAction)pushButton:(id)sender;
This (id)sender when do I use it?
|
In some
This
| ||||
|
feedback
|
|
Code example:
| |||||||||||||||
feedback
|
|
" (id)sender is the object which sent the message to that selector. It's like in the delegate functions where you have the control passed in to the function, etc. You'd use this if you had 2 objects which were calling that selector and you wanted to distinguish between them. Of course, you could just use two different functions, but it's often cleaner and less duplication of code to use one function." [Quoted] See this for more details: http://www.iphonedevsdk.com/forum/iphone-sdk-development/13295-about-id-sender.html Also this will help you: Update after reading Fulvio Cusumano's Answer - Comments #1 & #3 An example for what you are asking, on UITextField There is a delegate tells you when the UITextField editing ends:
| |||||
feedback
|
|
"sender" is the name of the variable. "(id)" means that the type of the variable is "id", that stands of "any object" (You can see it as the top of the object hierarchy if you want The name of the method is pushButton: and require 1 parameter of any kind. This method will be linked to a button on the UI. The delegate of this UI will receive this call and will have a reference to the UIButton that has made the call. Sometimes you don't need it, sometimes you need to have access to that UIButton to change his properties for instance. | ||||
|
feedback
|
|
It's part of the target-action mechanism of Cocoa, which is one way objects can communicate with each other. In response to an event (such as a mouse click), one object (usually a control of some kind) sends a message to another object. The sender is called, well, "sender", the receiver is the "target" and the message is the "action". You can use it in the target's message handler to get additional information about the action from the sender. | ||||
|
feedback
|
|
I learnt from Rabskatran. But i wouldlike to correct the only part that said "sender" is the name of the variable. It should be (from Apple documentation - https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/EventOverview/EventArchitecture/EventArchitecture.html): "The methods invoked by action messages have a specific signature: a single parameter holding a reference to the object initiating the action message; by convention, the name of this parameter is sender. For example,
SO IT IS A PARAMETER! | |||
|
feedback
|
|
Here's an example of (id)sender passing tag information from several buttons to one IBAction. This video demonstrates the concept of (id) sender in action, which I found to be very useful. | |||
|
feedback
|
-, by contrast, gives you a list element, as you can see in your question. The "{}" button in the editor toolbar does this for you. Edit your question and try it out. Click the orange question mark in the editor toolbar for more information and tips on formatting. – outis Apr 7 '11 at 8:35