Are NSNotificationCenter events received synchronously or asynchronously?

情到浓时终转凉″ 提交于 2019-12-03 02:04:04
Nishant Tyagi

As stated in the documentation for NSNotificationCenter NSNotificationCenter Class Reference notifications are posted synchronously.

A notification center delivers notifications to observers synchronously. In other words, the postNotification: methods do not return until all observers have received and processed the notification. To send notifications asynchronously use NSNotificationQueue.

In a multithreaded application, notifications are always delivered in the thread in which the notification was posted, which may not be the same thread in which an observer registered itself.

Hope it helps you.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!