Contents

os_block_t

A block that takes no arguments and returns no value.

Declaration

typedef void (^)(void) os_block_t;

Discussion

When not building with Objective-C ARC, a block object allocated on or copied to the heap must be released with a release message or the Block_release function.

The declaration of a block literal allocates storage on the stack.

See Also

Memory