//定义一个blocks变
- int (^myblocks2) (int a, int b) = ^(int a, int b) {
- int c = a + b;
- return c;
- };
//向外暴露一个接口 -(void) setBark:( void (^) (Dog *thisDog, int count) ) eachBark;
//定义一个blocks变
//向外暴露一个接口 -(void) setBark:( void (^) (Dog *thisDog, int count) ) eachBark;