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

block 页面传值

时间:2015-08-03 19:11:06      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:

Block 传值

 

.h  

typedef void(^CountBlock)(NSIntegerfigure);

-(void)CountWithFigureBlock:(CountBlock)figureBlock;                       

 

.m     

CountBlock cBlock;

 #pragma mark - 块传值调用的方法

-(void)CountWithFigureBlock:(CountBlock)figureBlock

{

   cBlock=figureBlock;

}

 

块的使用

InCashViewController *cashVC = [InCashViewControllernew];

       [cashVC CountWithFigureBlock:^(NSInteger figure) {

           NSString * str=[NSString stringWithFormat:@"%ld",figure];

           reduceStr=str;

 

       }];

版权声明:本文为博主原创文章,未经博主允许不得转载。

block 页面传值

标签:

原文地址:http://blog.csdn.net/summer493506332/article/details/47259567

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