Skip to content

Instantly share code, notes, and snippets.

@dinneo
Forked from ericdke/notification.swift
Created October 13, 2017 15:52
Show Gist options
  • Save dinneo/045746d2a71c8e66b9d340c8846d5d4c to your computer and use it in GitHub Desktop.
Save dinneo/045746d2a71c8e66b9d340c8846d5d4c 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