Is it possible to pass an Objective-C block for the @selector argument in a UIButton? i.e., Is there any way to get the following to work?
@selector
UIButton
The library BlocksKit on Github (also available as a CocoaPod) has this feature built-in.
Take a look at the header file for UIControl+BlocksKit.h. They've implemented Dave DeLong's idea so you don't have to. Some documentation is here.