I have two UIButtons (I create them using IB), which connected to File's owner with the same IBAction, how can i define which of them are pressed?
|
feedback
|
|
Your action can be implemented like this:
Then inside this method you can check by -isEqual: method
Alternatively you can set up different values to tag property of buttons and then:
You need to set up this tag either in your .xib or in code. | |||||||
feedback
|
|
Something along these lines... assuming button1 and button2 are in your header file.
Or set the tag in Interface Builder and check for the tag.
Tags AREN'T zero-based. Use 1 or greater. | |||
|
feedback
|
|
Declare your action as
When a control sends the someAction message, it will send itself along as the sender parameter. e.g.
Now you know which control sent the message. | |||
|
feedback
|