NSNotification

NSNotification
解释:消息
一个类执行另一个类的方法时使用
注册消息
[[NSNotificationCenter defaultCenter] //默认通知对象
addObserver:self /观察者,即在什么地方接收通知
selector:@selector(realizeNotificationButton) //收到通知后调用何种方法
name:@“mytest” //通知的唯一标示,编译器通过这个找到通知
object:nil
];
在另一个类里调用消息
[[NSNotificationCenter defaultCenter]
postNotificationName:@”mytest” object:nil];
相应消息
-(void)realizeNotificationButton
{
NSLog(@”消息”);
}
备注:
若在第二步调用消息时传递了参数(object)
注册消息,有冒号
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleFirstNotification:) name:@”first” object:nil];

在另一个类里调用时object候跟参数
[[NSNotificationCenter defaultCenter] postNotificationName:@”mytest” object:self.TextFile.text];
相应消息时
- (void)handleFirstNotification:(NSNotification *)notification
{
NSString str = (NSString )notification.object;接收参数
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值