我使用此代码创建具有间隔时间的通知:
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()
但我想用间隔时间来做。
谢谢。