Notifications: Difference between revisions

From iPhone Development Wiki
(Creation)
 
m (Added Mach Overview link.)
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
A notification is a message sent to one or more observing objects to inform them of an event in a program. Not to be confused with notifications a user receives in the Notification Center or Push notifications.
'''Not''' to be confused with the notifications a user receives in the Notification Center (or push notifications), a '''notification''' is a message sent to one or more observing objects to inform them of an event in a program.  


''Explain what they are, how to use them and why they are useful.''
''To do: explain what they are, how to use them and why they are useful.''


Relevant APIs:
Relevant APIs:
Line 11: Line 11:
* [https://developer.apple.com/library/mac/documentation/Darwin/Reference/DarwinNotify/Reference/reference.html notify]
* [https://developer.apple.com/library/mac/documentation/Darwin/Reference/DarwinNotify/Reference/reference.html notify]


Darwin notifications are handled by [[Notifyd]].
Darwin notifications are handled by [[notifyd]].


== List of Notification pages ==
== List of Notification pages ==
Line 56: Line 56:
|-
|-
| [[QuartzCore.framework/Notifications‏]]
| [[QuartzCore.framework/Notifications‏]]
|-
| [[SpringBoard.app/Notifications]]
|-
|-
| [[SpringBoardServices.framework/Notifications‏]]
| [[SpringBoardServices.framework/Notifications‏]]
|-
|-
| [[TelephonyUI.framework/Notifications]]
| [[TelephonyUI.framework/Notifications]]
|-
| [[UIKit.framework/Notifications]]
|-
|-
| [[WiFiPicker.servicebundle/Notifications]]
| [[WiFiPicker.servicebundle/Notifications]]
Line 65: Line 69:
|}
|}


== References ==
== See also ==


[https://developer.apple.com/library/mac/documentation/Darwin/Conceptual/MacOSXNotifcationOv/Introduction/Introduction.html OS X Notification Overview]
* [[IPC]]
* [[Updating extensions for iOS 7#Inter-process communication]]
* [[libobjcipc]]


[https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Notifications/Introduction/introNotifications.html Notification Programming Topics]
== External links ==


[https://developer.apple.com/library/mac/samplecode/NotifyTool/Listings/NotifyTool_c.html notify example]
* [https://developer.apple.com/library/mac/documentation/Darwin/Conceptual/MacOSXNotifcationOv/Introduction/Introduction.html OS X Notification Overview]
* [https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Notifications/Introduction/introNotifications.html Notification Programming Topics]
* [https://developer.apple.com/library/mac/documentation/Darwin/Conceptual/KernelProgramming/Mach/Mach.html Mach Overview]
* [https://developer.apple.com/library/mac/samplecode/NotifyTool/Listings/NotifyTool_c.html notify example]

Latest revision as of 21:16, 9 July 2016

Not to be confused with the notifications a user receives in the Notification Center (or push notifications), a notification is a message sent to one or more observing objects to inform them of an event in a program.

To do: explain what they are, how to use them and why they are useful.

Relevant APIs:

Darwin notifications are handled by notifyd.

List of Notification pages

Here is a list of notification pages that have been linked to from this wiki.

This list is incomplete. You can help by expanding it. Or creating the listed pages. You can use Cycript and NotificationExplorer to retrieve the notifications that exist in a process.

ApplicationScripting.framework/Notifications
AppSupport.framework/Notifications‏‎
AudioToolbox.framework/Notifications
AVFoundation.framework/Notifications‏
BackBoardServices.framework/Notifications
BulletinBoard.framework/Notifications
ChatKit.framework/Notifications‏
CoreFoundation.framework/Notifications
CoreTelephony.framework/Notifications
Foundation.framework/Notifications
GraphicsServices.framework/Notifications
IOKit.framework/Notifications
IOSurface.framework/Notifications
MapKit.framework/Notifications
Message.framework/Notifications
Preferences.app/Notifications
Preferences.framework/Notifications‏
QuartzCore.framework/Notifications‏
SpringBoard.app/Notifications
SpringBoardServices.framework/Notifications‏
TelephonyUI.framework/Notifications
UIKit.framework/Notifications
WiFiPicker.servicebundle/Notifications

See also

External links