block别名部分:
typedef int(^calculateBlock)(int, int);
int main(int argc, const char * argv[]) {
@autoreleasepool {
calculateBlock sumBlock = ^(int value1, int value2) {
return value1 + value2;
};
int res = sumBlock(2,3);
NSLog(@"res is equal to : %d", res);
}
return 0;
}
Objective-C基础学习之typedef和Block1.函数指针回顾 函数指针使用 函数指针别名 2.block和typedef block使用 block别名