是否可以按间隔时间解除本地通知? (迅速)

时间:2016-06-21 07:52:18

标签: swift uilocalnotification

我使用此代码创建具有间隔时间的通知:

    let localNotification:UILocalNotification = UILocalNotification()
    localNotification.alertAction = "Testing notifications on iOS8"
    localNotification.alertBody = Text
    localNotification.fireDate = NSDate(timeIntervalSinceNow: 1)
    localNotification.soundName = UILocalNotificationDefaultSoundName
    UIApplication.sharedApplication().scheduleLocalNotification(localNotification)

是否可以按时间间隔解除此通知?

我知道

UIApplication.sharedApplication().cancelAllLocalNotifications()

但我想用间隔时间来做。

谢谢。

0 个答案:

没有答案