为什么手动设置根视图控制器显示黑屏?



我已经使用 Xcode 11,Beta 5 为 iOS 13 手动设置了一个根视图控制器。删除了部署信息中对 main 的引用,包括删除 info.plist 中对 main 的引用,这是我在 iOS 13 之前从未发现自己必须做的。窗口的设置在 SceneDelegate 中完成,嵌套在 willConnectTo 函数中。通常,如果我错过了一步,应用程序会崩溃。现在我得到一个空白的黑屏,而不是看到我的视图控制器的设置,比如红色背景。所有这些都用于在 beta 5 之前工作。

已执行擦除模拟器上的所有内容和设置。已清除生成文件夹并在物理设备上运行应用。还使用了另一台装有Xcode 11,beta 5的计算机。所有结果都显示相同的空白黑屏。我错过了什么?

以下是我在 willConnectTo 函数中嵌套的场景委托文件中对根视图控制器的手动设置:

let viewCon = ViewController()
window = UIWindow(frame: UIScreen.main.bounds)
window?.rootViewController = viewCon
window?.makeKeyAndVisible()

为了确保在以编程方式完成所有操作时在 iOS 13 中看到根视图控制器,您必须执行以下操作:

在场景委托中,必须创建窗口实例和根视图控制器:

class SceneDelegate: UIResponder, UIWindowSceneDelegate {
var window: UIWindow?
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
guard let winScene = (scene as? UIWindowScene) else { return }
// Create the root view controller as needed
let vc = ViewController()
let nc = UINavigationController(rootViewController: vc)
// Create the window. Be sure to use this initializer and not the frame one.
let win = UIWindow(windowScene: winScene) 
win.rootViewController = nc
win.makeKeyAndVisible()
window = win
}
}

您的 Info.plist 必须具有"应用程序场景清单"条目。它下面应该是"启用多个窗口"条目。根据应用设置为"是"或"否"。(可选(您还应该具有"场景配置"条目。

当您选中目标的"常规"选项卡上的"支持多个窗口"设置时,Xcode 会添加所有这些条目。这会将"启用多个窗口"条目默认为"是",因此,如果您想要场景而不是多个窗口,则可以将其更改为"否"。

func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
guard let windowScene = (scene as? UIWindowScene) else { return }
let window = UIWindow(windowScene: windowScene)
self.window = window
let mainstoryboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let newViewcontroller:UIViewController = mainstoryboard.instantiateViewController(withIdentifier: "YourVCName") as! YourVCName
navigationController = UINavigationController(rootViewController: newViewcontroller)
window.rootViewController = navigationController
window.makeKeyAndVisible()
}

试试这个代码!! 如果您使用的是 iOS 13 并且您的 Xcode 已更新,则应在场景委托而不是应用程序委托中设置根视图控制器。

当时我遇到了同样的问题,我知道有人已经解决了这个问题,但是,我只想分享我的方法。

let storyBoard = UIStoryboard(name: "Main", bundle: nil)
let initialViewController = storyBoard.instantiateViewController(withIdentifier: "HomeScreen") as? HomeScreen
self.window?.rootViewController = initialViewController

我改用了这个简单的代码,它就像一个魅力:(

相关内容

  • 没有找到相关文章

最新更新