码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 设计模式-Block实现代理的逻辑

时间:2015-10-31 18:36:22      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

在A页面,点击跳转到B页面,B页面操作完,回到A页面,并刷新A页面的内容。典型的例子,就是在一个列表里,点击新增,跳到新增页面,新增完,把数据传回给列表页,并刷新列表页里的内容。

这个,我平时一般是通过代理来实现,下面试着通过Block来实现。

在B页面定义Block,供A页面调用。

/**
 *  确认订单选择返回block
 */
@property (nonatomic, strong) void (^ selectedAddressBlock)(HGAddressModel * address);

B页面,操作完成,给Block传回调值

/**
 *  选中行,为了确认订单时,选择收货地址使用
 */
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    HGAddressModel *entity = self.dataSource[indexPath.row];
    if (self.selectedAddressBlock) {
        self.selectedAddressBlock(entity);
    }
    [self.navigationController popViewControllerAnimated:YES];
}

A页面操作就很简单了,跳转到B页面,直接调用B页面的Block 就可以拿到结果了。

- (void)jumpAddress:(UIButton *)sender {
    AddressListViewController *address = [[AddressListViewController alloc] init];
    address.hidesBottomBarWhenPushed = YES;
    address.title = @"地址管理";
    address.selectedAddressBlock = ^(HGAddressModel *model){
        DR_NSLog(@"----------model------------%@",model.province_name);
    };
    [self.navigationController pushViewController:address animated:YES];
}

OK,完成。

 

iOS 设计模式-Block实现代理的逻辑

标签:

原文地址:http://www.cnblogs.com/jys509/p/4925879.html

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