当应用程序进入前台时,我将添加新的UIWindow以显示密码视图控制器。
在iOS 13之前的AppDelegate中,我拥有属性var passcodeWindow = UIWindow(frame: UIScreen.main.bounds)
,其中我rootViewController
是密码视图控制器,并且在applicationWillEnterForeground
方法中将passcodeWindow.makeKeyAndVisible()
其放置在顶部。
现在,当我想在iOS 13中实现密码功能时,这种方法就会出现问题。我将其移至sceneWillEnterForeground
SceneDelegate中的方法,但似乎无法passcodeWindow
在此场景的实际窗口顶部显示。
我执行的操作与AppDelegate中的操作完全相同,并且passcodeWindow
未显示。
我sceneWillEnterForeground
在AppDelegate和SceneDelegate中执行的方式:
passcodeWindow.rootViewCOntroller= passcodeViewController(type: .unlock) passcodeWindow.makeKeyAndVisible()
我希望passcodeWindow
显示在场景中当前窗口的顶部。