If I want to pass nothing for an Objective-C block, what keyword should I use, NULL or nil? I'm asking this because an Objective-C block is an Objective-C object (as I know), but represented as a function pointer.

NULL and nil both indicate a 0x0 pointer, however they are different semantically. So I'm concerned about this.

link|improve this question

77% accept rate
feedback

1 Answer

up vote 12 down vote accepted

Blocks are not represented as function pointers. They're represented as blocks, and this is denoted by the ^ symbol in their declaration. Down under the hood, the only resemblance is the call syntax. Otherwise, they are both very, very different.

It is often useful to call methods on them. For instance, if you don't use garbage collection, you need to call the copy method on blocks if you want to keep them for later. Also, you can use the invoke method on blocks that require no parameters; this is useful, for instance, if you need to execute a block on the main run loop (using NSObject's performSelectorOnMainThread: withObject: waitUntilDone: method, passing @selector(invoke)).

NULL is, depending on your compiler, either just 0 or (void*)0. This would work for any kind of pointer. However, because of the language rules of Objective-C, you'll get a warning if you try to send a message to a type that can't cast directly to id. nil being (id)0, it's the preferred keyword to represent an (absence of) object.

Since it can be useful to send messages to blocks, you should use nil for them.

link|improve this answer
+1, for example the UIView class method for animation can have a parameter completion which is hinted as (void (^)(BOOL finished))completion and the documentation say: may be NULL. So I am not sure passing nil is the intended use. Please shed some light on this. – Nick Weaver Apr 23 '11 at 19:39
@Nick Weaver You can use NULL for any Objective-C type as well. The sole reason nil is preferred is that it satisfies the compiler in that nil is of type id, and it's valid to send a message to id, while it's not to send a message to a void pointer (it emits a warning). Since blocks are objects, there is no good reason to not use nil for them too. – zneak Apr 23 '11 at 20:29
Thanks for the explanation. – Nick Weaver Apr 23 '11 at 21:42
Thanks for answer. It was my mistake about function pointer. I originally wanted to talk function pointer form :) But I was so sleepy... – Eonil Apr 24 '11 at 3:12
Calling -invoke on a block is a bad idea as it's undocumented, implementation-specific behaviour that is subject to change. – Sedate Alien Sep 27 '11 at 3:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.