Block

三种Block
1.NSGlobalBlock:存储在全局空间(text段),没有引入局部变量的Block
2.NSStackBlock:存储在栈空间,none-arc模式下声明的Block
3.NSMallocBlock:存储在堆空间,arc模式下声明的Block,或者[2 copy]后的Block。

 

How Do I Declare A Block in Objective-C?

As a local variable:

returnType (^blockName)(parameterTypes) = ^returnType(parameters) {...};

As a property:

@property (nonatomic, copy) returnType (^blockName)(parameterTypes);

As a method parameter:

- (void)someMethodThatTakesABlock:(returnType (^)(parameterTypes))blockName;

As an argument to a method call:

[someObject someMethodThatTakesABlock:^returnType (parameters) {...}];

As a typedef:

typedef returnType (^TypeName)(parameterTypes);
TypeName blockName = ^returnType(parameters) {...};
This site is not intended to be an exhaustive list of all possible uses of blocks.
If you find yourself needing syntax not listed here, it is likely that a typedef would make your code more readable.

Unable to access this site due to the profanity in the URL? http://goshdarnblocksyntax.com is a more work-friendly mirror.

posted on 2015-11-25 19:00  gjcat88  阅读(104)  评论(0编辑  收藏  举报

导航