In my project I must control action of 40 buttons, but I don't want to create 40 IBAction, can I use only a IBAction, how?
feedback
|
|
If you're using interface builder to create the buttons, simply point them at the same IBAction in the relevant class. You can then differentiate between the buttons within the IBAction method either by reading the text from the button...
...or by setting the | ||||
|
feedback
|
|
Set all the buttons to use that one action. Actions generally have a This technique is most useful when all the buttons do approximately the same thing, like the buttons on a calculator or keyboard. If each of the buttons does something completely different, then you still end up with the equivalent of 40 methods, but you substitute your own switch statement for Objective-C's messaging system. In that case, it's often better just to spend the time to create as many actions as you need an assign them appropriately. | |||
|
feedback
|
|
Sure. Just connect all buttons to the same action method in Interface Builder. Use the method's | |||
|
feedback
|