热门标签 | HotTags
当前位置:  开发笔记 > IOS > 正文

在iOS13上向场景添加新的UIWindow

如何解决《在iOS13上向场景添加新的UIWindow》经验,应该怎么办?

当应用程序进入前台时,我将添加新的UIWindow以显示密码视图控制器。

在iOS 13之前的AppDelegate中,我拥有属性var passcodeWindow = UIWindow(frame: UIScreen.main.bounds),其中我rootViewController是密码视图控制器,并且在applicationWillEnterForeground方法中将passcodeWindow.makeKeyAndVisible()其放置在顶部。

现在,当我想在iOS 13中实现密码功能时,这种方法就会出现问题。我将其移至sceneWillEnterForegroundSceneDelegate中的方法,但似乎无法passcodeWindow在此场景的实际窗口顶部显示。

我执行的操作与AppDelegate中的操作完全相同,并且passcodeWindow未显示。

sceneWillEnterForeground在AppDelegate和SceneDelegate中执行的方式:

passcodeWindow.rootViewCOntroller= passcodeViewController(type: .unlock)
passcodeWindow.makeKeyAndVisible()

我希望passcodeWindow显示在场景中当前窗口的顶部。


推荐阅读
author-avatar
一截藏青线
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有