NSNotificationCenter 的使用详解 http://unmi.cc/nsnotificationcenter-usage/ NSNotificationCenter 比之 Delegate 的好处就是事件发出者与响应者可以完全不认识,例如你在某个类中注册了 A 观察者某 E 事件的响应,你可以在程序的任何代码 X 中激发 E,A 的相应选择器即被触发,对象
开始监听消息: 用NSNotificationCenter实例的addObserver:selector:name:object:方法 不再监听了 用NSNotificationCenter实例的removeObserver:name:object:方法 Any object can broadcast a notification and any object within the sa