gpt4 book ai didi

ios - 以编程方式从 UIView 加载 View Controller

转载 作者:行者123 更新时间:2023-11-30 11:50:46 25 4
gpt4 key购买 nike

我正在类中使用以下内容来调用 UIViewController。 UIViewController 加载,但加载后变得无响应。

let storyboard : UIStoryboard = UIStoryboard(name: "Main", bundle: nil)

let homeC = storyboard.instantiateViewController(withIdentifier:
"ViewJoeProfileController") as? ViewJoeProfileController
if homeC != nil {
homeC!.view.frame = (self.window!.frame)
self.window!.addSubview(homeC!.view)
self.window!.bringSubview(toFront: homeC!.view)
}
}

任何使 UIViewController 加载响应的建议都会很有帮助!

最佳答案

如果您特别想添加到窗口,您应该以正确的方式进行操作并添加整个 ViewController:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
guard let window = UIWindow(frame: UIScreen.mainScreen().bounds) else { return true }
if let homeC = storyboard.instantiateViewController(withIdentifier: "ViewJoeProfileController") as? ViewJoeProfileController {
window.rootViewController = mainViewController
window.makeKeyAndVisible()
}

return true
}

但老实说,这个结构似乎仍然不正确。为什么要向窗口添加 View ,而不是使用初始 View Controller ,然后添加到其 View ,或者连接到不同的 ViewController?

关于ios - 以编程方式从 UIView 加载 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48332869/

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