gpt4 book ai didi

swift3 - 每 14 天(每两周)触发一次 UILocalNotification Swift

转载 作者:行者123 更新时间:2023-12-05 08:55:24 29 4
gpt4 key购买 nike

这个问题已经在 SO 上得到了回答。这是引用:

iOS Notification Trigger: fortnightly and/or quarterly

但到目前为止我所尝试的是:

var fortnightPart1 = DateComponents()
fortnightPart1.weekday = Calendar.current.component(.day, from: Sdate) //(Day..here Sunday)
fortnightPart1.weekdayOrdinal = 2 //= n == (nth Day in the month...here 2nd Sunday in every month month)
fortnightPart1.hour = Calendar.current.component(.hour, from: Sdate)
fortnightPart1.minute = Calendar.current.component(.minute, from: Sdate)
fortnightPart1.second = Calendar.current.component(.second, from: Sdate)
trigger = UNCalendarNotificationTrigger(dateMatching: fortnightPart1, repeats: repeate)

我无法在 14 天后实现它。虽然,它来自随机数据。任何人都可以检查代码有什么问题吗?

Update:

根据您的建议 ( https://stackoverflow.com/a/46072497/7408802 ),这是有效的最终代码!

//for 1st time notification
let center = UNUserNotificationCenter.current()
let content = UNMutableNotificationContent()
content.title = title
content.body = body
content.categoryIdentifier = "\(id)"
content.sound = UNNotificationSound.default()
fortnightPart1.hour = Calendar.current.component(.hour, from: dateToFireON)
fortnightPart1.minute = Calendar.current.component(.minute, from: dateToFireON)
fortnightPart1.second = Calendar.current.component(.second, from: dateToFireON)
trigger = UNCalendarNotificationTrigger(dateMatching: fortnightPart1, repeats: false)
content.userInfo = ["NotificationID": id,"repeate":repeate,"resedule":true]
let request = UNNotificationRequest(identifier: "\(id)", content: content, trigger: trigger)
center.add(request)

//when first notification triggered, we need to set another for 14 days repeat in UIApplicationDelegate
func application(_ application: UIApplication, didReceive notification: UILocalNotification) {
let center = UNUserNotificationCenter.current()
let content = UNMutableNotificationContent()
content.title = notification.alertTitle!
content.body = notification.alertBody!
content.categoryIdentifier = "\(reminderId)"
content.userInfo = ["NotificationID": reminderId,"repeate":true,"resedule":false]
content.sound = UNNotificationSound.default()
let trigger = UNTimeIntervalNotificationTrigger.init(timeInterval: 1209600, repeats: true)
let request = UNNotificationRequest(identifier:"\(reminderId)", content: content, trigger: trigger)
center.add(request, withCompletionHandler: nil)
}

最佳答案

使用简单的 UNNotificationTrigger 无法实现您想实现的目标。对于每两周重复一次的通知,您需要设置一个 UNTimeIntervalNotificationTrigger,其 timeInterval 等于两周。但是,您无法指定时间间隔触发器的第一个触发日期,它会在您安排后立即开始“滴答作响”。

另一方面,UNCalendarNotificationTrigger 可以安排在特定日期触发,但问题在于您无法为通知触发器指定自定义重复间隔。

首先,您需要为用户指定的日期设置一个非重复的 UNCalendarNotificationTrigger,并且在发送该通知后,设置一个 UNTimeIntervalNotificationTrigger每两周触发一次。这种方法的唯一问题是用户也会在指定日期看到通知,而不仅仅是在那之后每两周一次。但是,您可以通过将通知设置为在指定日期后两周发送来规避此问题,这样用户就不会注意到通知之间的差异。

关于swift3 - 每 14 天(每两周)触发一次 UILocalNotification Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46070648/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com