I have following requirements:
NSButton
using : - (SEL)action
Can we perform 2nd pt. Generally we invoke an action like this- [self abc:nil]
just thinking if we can invoke the method obtained from 2nd pt. in same way!
Try:
SEL actionSelector = [button action];
[self performSelector: actionSelector withObject:nil];