Search code examples
xcodemacoscocoasafarinsnotification

Available Notifications For NSDistributedNotificationCenter


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


Solution

  • 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.