2012年2月21日

NSNotificationCenter

摘要: View Code 1 1. 定义一个方法 2 3 -(void) update{ } 4 5 2. 对象注册,并关连消息 6 7 [[NSNotificationCenter defaultCenter] 8 9 addObserver:self selector:@selector(update) name:@"update" object:nil] 10 11 3. 在要发出通知消息的地方 12 13 [[NSNotificationCenter defaultCenter] 14 15 ... 阅读全文

posted @ 2012-02-21 08:57 AXZON 阅读(317) 评论(0) 推荐(0) 编辑

导航