gpt4 book ai didi

ios - UILocalNotification 仅在锁定屏幕/通知屏幕上显示

转载 作者:可可西里 更新时间:2023-11-01 01:59:35 24 4
gpt4 key购买 nike

每当应用收到静默推送时,我都会显示本地通知。如果在收到静默推送时,iPhone 被锁定,本地通知正在显示,但如果应用程序在后台且 iPhone 未锁定,则本地通知不会显示。有什么问题。 ?我正在使用下面的代码?

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

let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 1,
repeats: false)

let appDelegate = UIApplication.shared.delegate as! AppDelegate

UNUserNotificationCenter.current().delegate = appDelegate
content.userInfo = payload.dictionaryPayload


let request = UNNotificationRequest(identifier: content.title, content: content, trigger: trigger)
UNUserNotificationCenter.current().add(request, withCompletionHandler: { (error) in
NSLog("UNUserNotificationCenter Add completion Handler : \(String(describing: error?.localizedDescription))")
})

最佳答案

应用程序可能会在后台 中暂停,因此不会执行创建本地通知 的代码。 . .

关于ios - UILocalNotification 仅在锁定屏幕/通知屏幕上显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47676054/

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