一旦发送了上一个通知,就安排本地通知

时间:2016-06-11 12:56:22

标签: ios swift uilocalnotification

即使应用程序未打开,我怎么知道发送通知的时间,以便我可以取消它并安排新的通知?

当前代码:

let notification = UILocalNotification()
notification.fireDate = NSDate(timeIntervalSinceNow: 60)
notification.alertBody = athkar.randomItem()
notification.soundName = UILocalNotificationDefaultSoundName

UIApplication.sharedApplication().scheduleLocalNotification(notification)

但我不知道在那之后该怎么办,甚至可能吗?

0 个答案:

没有答案