本文主要是介绍1.30 Listening for Notifications Sent from NSNotificationCenter,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
开始监听消息:
用NSNotificationCenter实例的addObserver:selector:name:object:方法
不再监听了
用NSNotificationCenter实例的removeObserver:name:object:方法
Any object can broadcast a notification and any object within the same app can opt into listening for notifications with specific names.
Two notifications with the same name can be broadcast, but they must come from two different objects.
任何对象都可以广播消息,任何对象都可以有选择的监听消息。
两个通知名字可以相同,但必须来自不同对象。
通过object参数,可指定某个对象发出来的同名通知才被通知,如果是nil则所有同名通知都会通知到
这篇关于1.30 Listening for Notifications Sent from NSNotificationCenter的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!