iOS NSNotification的使用

先在消息中心注冊通知  

[[NSNotificationCenter defaultCenter] addObserver:observer selector:@selector(”要运行的函数“) name:@"NAME"(须要观察的对象) object:nil];

然后发送通知

[[NSNotificationCenter defaultCenter] postNotificationName:@"NAME" object:self];

须要注意的是注冊通知的NAME与发送通知的NAME要同样,才干接收到相应的通知

posted @ 2016-01-15 14:06  blfshiye  阅读(100)  评论(0编辑  收藏  举报