gpt4 book ai didi

swift - 如何快速将需要 View Controller 推送到导航 Controller

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

我正在开发一个具有登录屏幕和验证码屏幕的应用程序。用户登录和注销后,我只需要显示登录屏幕,那么如何管理导航 View Controller 。现在,当我按下退出按钮时,我的验证代码 View Controller 首先出现,然后显示登录 View Controller 。

您能让我知道如何管理 View Controller 吗?

最佳答案

您可以使用此方法didFinishLaunchingWithOptions (AppDelegate):

    self.window = UIWindow.init(frame: UIScreen.main.bounds)

if (User.isLogged) {
window?.rootViewController = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "loginVC") as! LoginVC
} else {
window?.rootViewController = UIStoryboard(name: "Main", bundle: nil).instantiateInitialViewController()!
}

self.window?.makeKeyAndVisible()

当您可以存储有关状态用户(授权或未授权)的信息时,创建类User,并在didFinishLaunchingWithOptions中检查此状态并为窗口设置rootViewController。

关于swift - 如何快速将需要 View Controller 推送到导航 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43538001/

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