iOS六种传值方式之通知传值

A、B两个页面,需要将B上的值获取并传到A页面上显示出来。

通知传值

通知传值,在B页面发送一个通知出去,A页面接收这个通知,然后修改相关属性的值,并将其显示出来。

具体实现:

1.B页面定义并发送一个通知

//定义一个全局变量 ------> 通知类型
#define kTextFieldTextChangeNotification @"TextFieldTextChangeNotification"

//在button的点击事件里面
//1) 取值
UITextField *textField = (UITextField *)[self.view viewWithTag:2000];
//2) ***发送通知***
NSDictionary *userInfo = @{@"text" : textField.text};
[[NSNotificationCenter defaultCenter] postNotificationName:kTextFieldTextChangeNotification               object:nil                  userInfo:userInfo];
//3) 关闭模态视图
[self dismissViewControllerAnimated:YES completion:nil];

2.回到A页面后在接受通知的方法里面进行值的修改

#pragma mark - 接受通知的方法
- (void) receiveNotification: (NSNotification *) notification {

    //1) 通过tag获取页面的label
    UILabel *label = (UILabel *) [self.view viewWithTag:1000];
    //2) 修改label上的值
    label.text = notification.userInfo[@"text"];
}

3.移除监听对象

- (void) dealloc {
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值