您的位置:首页 > 其它

block 页面传值

2015-08-03 17:40 204 查看
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;

}];
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: