问题
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