gpt4 book ai didi

ios - 本地通知已安排,但不会以暂停和非运行模式发送

转载 作者:行者123 更新时间:2023-11-28 11:35:06 36 4
gpt4 key购买 nike

我想为我的应用程序添加后台获取,当静默远程通知到达时(content-available : 1 ),所以当它到达时,我在本地触发后台更新,检查新数据,如果是,则生成本地为用户推送通知。但是,只有当应用程序处于后台、未挂起或未运行状态时,它才能完美运行。在这些状态下,我得到它来获取一些数据,但没有触发本地通知(它是在设备的控制台中创建的),有什么办法可以解决这个问题吗?

这是我生成推送的代码(它按预期工作)

func generatePushNotification(with title: String, body: String, badge: Int = 1){
let content = UNMutableNotificationContent()
content.badge = badge as NSNumber
content.title = title
content.body = body
content.sound = UNNotificationSound.default
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 1,
repeats: false)
let notification = UNNotificationRequest(identifier: "pushLocal", content: content, trigger: trigger)
UNUserNotificationCenter.current().add(notification) { (error) in
if error != nil {
NSLog((error?.localizedDescription)!)
}
}
}

这是我的 notificationFetch 代码

func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
networkManager.getScheduleForGroup(group) { (resp, error) in
self.generatePushNotification(with: "Back", body: "ground")
completionHandler(.newData)

}
completionHandler(.noData)

}

这是控制台输出:

dasd    CANCELED: com.apple.pushLaunch.**:297454 <private>!

SpringBoard Saving notification 802A-AE8C: 0 [ hasAlertContent: 0, shouldPresentAlert: 1 ]

SpringBoard Delivered user visible push notification 802A-AE8C

SpringBoard Load 0 pending notification dictionaries

SpringBoard Adding notification 802A-AE8C to destinations 0 [ hasAlertContent: 0, shouldPresentAlert: 1 hasSound: 0 shouldPlaySound: 1 ]

最佳答案

let content = UNMutableNotificationContent()
content.title = title
content.body = body
content.sound = UNNotificationSound.default()

var dateComponents = Calendar.current.dateComponents([.hour, .minute, .second], from: Date())

let trigger = UNCalendarNotificationTrigger(dateMatching: dateComponents, repeats: false)

let request = UNNotificationRequest(identifier: identifier, content: content, trigger: trigger)

UNUserNotificationCenter.current().add(request, withCompletionHandler: { (error) in
if let error = error{
print(error)
}
})
UNUserNotificationCenter.current().delegate = self

使用这个

关于ios - 本地通知已安排,但不会以暂停和非运行模式发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55610162/

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