在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,完成。
时间: 2024-10-24 05:25:35