Question

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

Was it helpful?

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top