摘要: 1. 定义一个方法 -(void) update{ } 2. 对象注册,并关连消息 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(update) name:@"update" object:nil] 3. 在要发出通知消息的地方 [[NSNotificationCenter defaultCenter] postNotificationName:@"update" object:nil];具体如何使用 Notificationshttp://blog.s 阅读全文
posted @ 2011-06-03 17:23 威尚 阅读(12467) 评论(1) 推荐(2) 编辑