1. 定义一个方法
-(void) update{
}
2.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(update) name:@"update" object:nil]
3. 在要发出通知消息的地方
[[NSNotificationCenter defaultCenter] postNotificationName:@"update" object:nil];
http://blog.sina.com.cn/s/blog_5df7dcaf0100c0q2.html