Skip to content

Instantly share code, notes, and snippets.

View yamishi13's full-sized avatar

Roberto Carlos Martinez Arriaga yamishi13

View GitHub Profile
@yamishi13
yamishi13 / notification.swift
Created August 5, 2016 01:36 — forked from ericdke/notification.swift
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()