码迷,mamicode.com
首页 > 其他好文 > 详细

Block 简单代码块的声明、实现与调用

时间:2016-03-12 22:39:01      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

// 代码块的声明
        void (^MyBlock)();
       
        //实现
        MyBlock =^()
        {
            NSLog(@"测试");
        };
       
        //调用
        MyBlock();
       
       // 代码块的声明
        NSInteger (^MyBlockAdd)(NSInteger x,NSInteger y);
 
        MyBlockAdd=^(NSInteger x,NSInteger y)
        {
            //NSLog(@"%ld",x+y);
            return x+y;
        };//实现
       
       NSInteger num =MyBlockAdd(27,33);//调用
        NSLog(@"num=%ld",num);

Block 简单代码块的声明、实现与调用

标签:

原文地址:http://www.cnblogs.com/Always-LuoHan/p/5270196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!