Skip to content

Instantly share code, notes, and snippets.

@zachbrown-bm
Forked from ericdke/notification.swift
Last active March 25, 2017 17:31
Show Gist options
  • Save zachbrown-bm/b46fd84fa9131df03b133ce5be3f527d to your computer and use it in GitHub Desktop.
Save zachbrown-bm/b46fd84fa9131df03b133ce5be3f527d to your computer and use it in GitHub Desktop.
Deliver an OSX notification with Swift
func showNotification() -> Void {
let notification = NSUserNotification()
notification.title = "Test from Swift"
notification.informativeText = "The body of this Swift notification"
notification.soundName = NSUserNotificationDefaultSoundName
NSUserNotificationCenter.default.deliver(notification)
}
//showNotification()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment