objective-cmemory-managementobjective-c-blocks

Storing Blocks in an Array


In Objective-C, I know that blocks are considered objects, so I was wondering if it was possible to store them in an array. This begs the question, are blocks first class objects or are they just treated like objects for the sake of passing them between objects? If they are first class objects, then shouldn't they be storable in arrays?


Solution

  • EDIT: Without going into too much detail, under ARC, you can now add blocks to collections like any other object (see discussion).

    I've left the original answer intact below, since it contains some interesting technical details.


    This begs the question, are blocks first class objects or are they just treated like objects for the sake of passing them between objects? If they are first class objects, then shouldn't they be storable in arrays?

    Blocks are Objective-C objects that very much behave like every other NSObject, with a couple of key differences:

    I've written a couple of blog posts both providing an introduction to blocks and some tips and tricks. You might find them interesting.

    And, yes, adding 'em to dictionaries is quite useful. I've written a couple of bits of code where I dropped blocks into dictionaries as command handlers where the key was the command name. Very handy.