在我的应用中,我有一个uidatepickerview,让用户选择一个时间。目前在我的代码中,我选择的时间作为dateA
传递。然后我循环查看在单独的uitableview中选择的所有日期,并检查它们是否等于今天(例如星期二)。如果天数相同,那么我会在dateA
传递的选定时间发送通知。但是,当我尝试发送通知时,它不会被发送。
以下是我的代码片段,展示了我的尝试:
var dateA: Date? = nil//where selected time is kept
var weekdaysChecked = [String]()//where selected weekdays are kept
var alarms = [Alarm]() {
didSet {
tableView.reloadData()
}
}
override func viewDidLoad() {
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound], completionHandler: { (didAllow, error) in
})
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "alarmCell", for: indexPath) as! DisplayAlarmCell
let row = indexPath.row
let alarm = alarms[row]
let date = Date()
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "EEEE"//"EE" to get short style
let dayInWeek = dateFormatter.string(from: date)
if(alarms.count == 40) {
self.navigationItem.rightBarButtonItem?.isEnabled = false
tableView.reloadData()
}
cell.alarmTitle.text = alarm.alarmLabel
cell.clockTitle.text = alarm.time
for weekdays in weekdaysChecked {
if(dayInWeek == weekdays){
let content = UNMutableNotificationContent()
content.title = alarm.alarmLabel!
content.subtitle = alarm.time!
content.sound = UNNotificationSound(named: "Spaceship_Alarm.mp3")
let trigger = Calendar.current.dateComponents([.hour,.minute], from: dateA!)
let triggerNotif = UNCalendarNotificationTrigger(dateMatching: trigger, repeats: false)
let triggerRequest = UNNotificationRequest(identifier: "AlarmNotif", content: content, trigger: triggerNotif)
UNUserNotificationCenter.current().add(triggerRequest, withCompletionHandler: nil)
print("This is the correct day.")
}
}
答案 0 :(得分:1)
假设您看到“这是正确的一天”消息,则候选问题是使用private static final Logger log = LoggerFactory.getLogger(HttpClient.class);
private static final HttpLoggingInterceptor loggingInterceptor =
new HttpLoggingInterceptor((msg) -> {
log.debug(msg);
});
static {
loggingInterceptor.setLevel(Level.BODY);
}
public static HttpLoggingInterceptor getLoggingInterceptor() {
return loggingInterceptor;
}
的固定标识符。正如the docs所说,“如果标识符不唯一,则不会传递通知”。
另外,如果UNNotificationRequest
调用失败,我建议添加错误消息。现在,如果权限因任何原因失败,您将不会知道,也不会发送任何通知。
无关,requestAuthorization
不是创建通知的正确位置。如果用户没有碰巧将特定单元格滚动到视图中,则不会创建任何通知。如果用户将单元格滚出视图然后返回视图,您将尝试再次创建相同的通知请求。底线,无论是否出现一个单元格(以及是否稍后再次出现)与是否应该创建通知无关。
通知的创建属于更新模型的位置(或响应某些用户操作,例如选中复选框等)。
答案 1 :(得分:0)
尝试在此处添加所有组件:
let trigger = Calendar.current.dateComponents([.year,.month,.day,.hour,.minute], from: dateA!)
将这些方法添加到AppDelegate
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (_ options: UNNotificationPresentationOptions) -> Void) {
completionHandler(UNNotificationPresentationOptionBadge)
}
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
completionHandler()
}
此外,我会检查您选择的日期是否因为与您的设备的时区不同而搞砸了。
希望这有帮助