I was wondering if it's possible to store a reference to an anonymous function (block) as an instance variable in Objective-C.
I know how to use delegation, target-action, etc. I am not talking about this.
|
I was wondering if it's possible to store a reference to an anonymous function (block) as an instance variable in Objective-C. I know how to use delegation, target-action, etc. I am not talking about this. |
||||
|
|
|
Sure.
|
|||||||||||||||||||
|
|
Yes, you most certainly can store a reference to a (copy) of an Objective-C block. The variable declaration is a little bit hairy, like C function pointers, but beyond that it's no problem. For a block that takes and
will do the trick. |
|||||||
|