摘要: 1.声明:void (^TestBlock) (int,int) = ^(int x,int y){ NSLog(@"%d",x*y);};调用:TestBlock(3,5);2.直接使用^(int x,int y){ NSLog(@"%d",x + y); }(3,7);3.返回... 阅读全文
posted @ 2015-04-23 12:36 朋克 阅读(185) 评论(0) 推荐(0) 编辑