Available Notifications For NSDistributedNotificationCenter

感情迁移 提交于 2019-12-11 03:29:49

问题


I was looking for a list of Distributed Notifications that exists on mac like iTunes com.apple.iTunes.playerInfo but I couldn't find anything. I was wondering if other applications like Safari or QuickTime does have such notifications? And if they exists what are their notification names?

Regards


回答1:


By adding an observer and setting it's name to nil it will show all the notifications.

[[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(observerMethod:) name:nil object:nil];

I didn't find anything special.



来源:https://stackoverflow.com/questions/12437149/available-notifications-for-nsdistributednotificationcenter

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