搜索
您的当前位置:首页正文

iOS 通知

来源:二三娱乐

NSNotificationCenter will call the selector provided in 

addObserver:selector:name:object:

with a single argument of type NSNotification. 

The selector is called in the same thread in which the notification was posted.

通知中心接收到通知后,调用执行方法的线程 与 post 发出通知的方法 在同一个线程。

Top