Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created June 30, 2016 03:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/905b45783835e96da7720a532129c4a4 to your computer and use it in GitHub Desktop.
Save chuck0523/905b45783835e96da7720a532129c4a4 to your computer and use it in GitHub Desktop.
private func showNotification() {
print("showNotification")
// Notification生成
let myNotification: UILocalNotification = UILocalNotification()
// メッセージ代入
myNotification.alertBody = "Test"
// Timezone設定
myNotification.timeZone = NSTimeZone.defaultTimeZone()
// Notificationを表示
UIApplication.sharedApplication().scheduleLocalNotification(myNotification)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment