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.