Reputation: 4299
How would I be able to send a notification to the Notification Center in Mountain Lion from objective-c in my mac app? (not to be confused with nsnotificationcenter). I would like a link to a sample project or sample code posted.
Upvotes: 1
Views: 813
Reputation: 25318
Look into the NSUserNotification
class. Once you have set it up, you can schedule it through the NSUserNotificationCenter
class which will then handle the presentation to the user.
Upvotes: 2