Reputation: 107121
I'm currently working on notification centers.
I read that there are 4 types of Notification Centers are there.
In which NSNotificationCenter
I'm familiar with. TelephonyNotificationCenter
is private and not provided for developers.
My question is about NSDistributedNotificationCenter
and DarwinNotificationCenter
.
What is the use of these two notification centers ? Is it available for developers ? If available how can I use them ?
What I tried:
Thanks in advance
Upvotes: 1
Views: 1335
Reputation: 2721
Both DarwinNotificationConcepts and NSDistributedNotificationCenter
are OS X specific and are not available under iOS.
The Darwin Notification Concepts article refers to the Unix under pinnings of MacOS X. Darwin being the Unix subsystem. It's best used for IPC between an application and a daemon and relies on notifyd
to work.
NSDistributedNotificationCenter
has the same basic working as NSNotificationCenter
but works between processes. Available since OS X 10.0
Upvotes: 2