Created
June 30, 2016 03:52
-
-
Save chuck0523/905b45783835e96da7720a532129c4a4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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