• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

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

[复制链接]
菜鸟教程小白 发表于 2022-12-11 19:42:45 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我想从本地通知启动我的应用程序,当主屏幕被锁定或用户在另一个应用程序中时,该通知将基于类似的讨论出现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 是第一个可见的东西。我觉得我一定错过了一些明显的东西,但我无法弄清楚它是什么。

编辑:做更多的测试。当通知出现在锁定屏幕上并且用户从锁定屏幕按“播放”时,密码/解锁屏幕不会出现,但应用程序仍然启动并且我得到打印输出“设置警报 View Controller 已实例化”



Best Answer-推荐答案


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

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

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap