检查我的重复间隔代码。我认为它是错误的。我希望只有用户选择通知及其工作的时间,但是它还有一个问题,即每隔13或14或者在任何时候我都要重复这个问题。为什么这样检查下面的代码,是否有人可以每周和每月帮助我?
//canceling notifications
func cancelLocalNotificationsWithUUID(uuid: String) {
for item in UIApplication.sharedApplication().scheduledLocalNotifications {
let notification = item as! UILocalNotification
if let notificationUUID = notification.userInfo?["UUID"] as? String {
if notificationUUID == uuid {
UIApplication.sharedApplication().cancelLocalNotification(notification)
}
}
}
}
@IBAction func NotificationButtonTapped(sender: AnyObject) {
cancelLocalNotificationsWithUUID("NotificationID")
var dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "HH:mm"
var strDate = dateFormatter.stringFromDate(datePicker.date)
PickedDate.text = "Your Notification time you choosed is \(strDate)"
PickedDate.numberOfLines = 0
var notifications:UILocalNotification = UILocalNotification()
notifications.fireDate = datePicker.date
notifications.timeZone = NSTimeZone.defaultTimeZone()
notifications.applicationIconBadgeNumber = UIApplication.sharedApplication().applicationIconBadgeNumber + 1
notifications.soundName = UILocalNotificationDefaultSoundName
switch(frequencysegmentedcontrol.selectedSegmentIndex){
case 0:
notifications.repeatInterval = NSCalendarUnit.CalendarUnitDay
break;
case 1:
notifications.repeatInterval = NSCalendarUnit.CalendarUnitWeekOfYear
break;
case 2:
notifications.repeatInterval = NSCalendarUnit.CalendarUnitMonth
break;
default:
notifications.repeatInterval = NSCalendarUnit.allZeros
break;
}
notifications.userInfo = ["UUID": "NotificationID"]
notifications.alertBody = "quote of the day"
// if user has not confirmed the notification permission
let settings = UIApplication.sharedApplication().currentUserNotificationSettings()
if settings.types == .None {
let ac = UIAlertController(title: "Can't schedule", message: "Either we don't have permission to schedule notifications, or we haven't asked yet.", preferredStyle: .Alert)
ac.addAction(UIAlertAction(title: "OK", style: .Default, handler: nil))
presentViewController(ac, animated: true, completion: nil)
return
}
UIApplication.sharedApplication().scheduleLocalNotification(notifications)
}
答案 0 :(得分:1)
请注意,重新安排重复间隔的本地通知不会取消之前的预定通知。这样,如果您已安排多次一次的每日通知,则每天会多次触发通知。要解决此问题,您必须通过调用以下方式手动取消所有以前的预定通知:
UIApplication.sharedApplication().cancelAllLocalNotifications()