Last active
August 29, 2015 14:01
-
-
Save wangzz/de7c9d52bb4d7b29107b to your computer and use it in GitHub Desktop.
记录有用的代码片段
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
记录有用的代码片段 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it is a test file. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Block 使用方式
How Do I Declare A Block in Objective-C?
returnType (^blockName)(parameterTypes) = ^returnType(parameters) {...};
- (void)someMethodThatTakesABlock:(returnType (^)(parameterTypes))blockName;
URL:
http://goshdarnblocksyntax.com/