Skip to content

Instantly share code, notes, and snippets.

@timothyarmes
Forked from ericdke/notification.swift
Created June 8, 2017 14:05
Show Gist options
  • Save timothyarmes/016ae158a1abf211bb6565cd38b679cb to your computer and use it in GitHub Desktop.
Save timothyarmes/016ae158a1abf211bb6565cd38b679cb to your computer and use it in GitHub Desktop.
Deliver an OSX notification with Swift
func showNotification() -> Void {
var notification = NSUserNotification()
notification.title = "Test from Swift"
notification.informativeText = "The body of this Swift notification"
notification.soundName = NSUserNotificationDefaultSoundName
NSUserNotificationCenter.defaultUserNotificationCenter().deliverNotification(notification)
}
//showNotification()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment