gpt4 book ai didi

ios - 从本地通知启动应用程序; VC实例化,但没有出现

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:04:48 25 4
gpt4 key购买 nike

我想从本地通知启动我的应用程序,该通知将在主屏幕锁定时或用户在基于类似讨论的另一个应用程序中时显示 herehere我的 AppDelegate 中有以下代码:

func userNotificationCenter(_: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {

switch response.actionIdentifier {

case "play":
var setAlarmVC = self.window?.rootViewController as? SettingAlarmViewController
if setAlarmVC == nil {
let storyboard = UIStoryboard(name: "Main", bundle: nil)
setAlarmVC = storyboard.instantiateViewController(withIdentifier: "AlarmViewController") as? SettingAlarmViewController
self.window = UIWindow(frame: UIScreen.main.bounds)
self.window?.rootViewController = setAlarmVC
self.window?.makeKeyAndVisible()
}

case "snooze":
print("I pressed pause")
default:
break
}

completionHandler()

}

在我的 SettingAlarmViewController 的 viewDidLoad 中,我设置了一些简单的打印输出

override func viewDidLoad() {
super.viewDidLoad()
print("Setting Alarm View Controller was instantiated")
}

当我在应用程序处于后台时从本地通知按下播放时,我按预期打印了控制台:

Setting Alarm View Controller was instantiated

但该应用程序实际上并未启动,也没有出现设置警报 View Controller 。如果我然后单击应用程序,一个新的设置警报 View Controller 是第一个可见的东西。我觉得我一定错过了一些明显的东西,但我无法弄清楚它是什么。

编辑:做更多的测试。当通知出现在锁定屏幕上并且用户在锁定屏幕上按“播放”时,密码/解锁屏幕不会出现,但应用程序仍会启动并且我得到打印输出“Setting Alarm View Controller was instantiated”

最佳答案

好吧,我一天的时间都浪费在这个上面了,这是一个问题,这样其他人就不会遇到同样的问题:developer.apple.com/documentation/usernotifications/… 你必须在你的通知操作中添加 [.foreground] ,如 let playAction = UNNotificationAction(identifier: "play", title: "play", options: [.foreground])

关于ios - 从本地通知启动应用程序; VC实例化,但没有出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48610469/

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