Is it possible to have blocks as properties using the standard property syntax?
Are there any changes for ARC?
|
Is it possible to have blocks as properties using the standard property syntax? Are there any changes for ARC? |
|||||||||||||||||||
|
|
Here's an example of how you would accomplish such a task:
Now, the only thing that would need to change if you needed to change the type of compare would be the
I hope this helps. EDIT March 12, 2012: For ARC, there are no specific changes required, as ARC will manage the blocks for you as long as they are defined as copy. You do not need to set the property to nil in your destructor, either. For more reading, please check out this document: http://clang.llvm.org/docs/AutomaticReferenceCounting.html |
|||||||||||||||||||||
|
|
Richard's answer is great, here is a concise version.
Assuming:
|
|||||||||||||||||
|