Basically I need to have several buttons in a view. I would like them to all call one function so that I can keep track of a 'state'.
How can I tell which button called the function? Is there anyway to get the text of the sender?
|
Basically I need to have several buttons in a view. I would like them to all call one function so that I can keep track of a 'state'. How can I tell which button called the function? Is there anyway to get the text of the sender?
| ||||
|
feedback
|
|
In iOS action methods, including IBAction methods, can have any of the following signatures (see "Target-Action in UIKit"):
If you use a method signature which accepts the sender then you have access to the object which triggered the action. You can then access properties on the calling object including its title and tag. You can also compare the sender to pointers you may already have to your buttons to determine which button is the sender of this particular event. I favor comparing pointers because I believe that | ||||
|
feedback
|
|
Set the You can do this in Interface Builder (just look through the fields). Then in code:
etc. | |||
|
feedback
|
|
You need not set the tag explicitly. You can define the IBOutlets of the UIButton in your .h file and their property as well as
and the method as
in the .m file you can implement the method as
Add more if statements in the method for as many buttons you wish. Do connect the IBOutlets of all the respective buttons and also the selector browse. Do remeber to release the IBOutlets in the dealloc method to prevent any memory leakage. Hope this helps!! | ||||
|
feedback
|