gpt4 book ai didi

ios - 如何以编程方式在不在同一 Storyboard 上的 View Controller 之间切换?

转载 作者:行者123 更新时间:2023-11-29 05:38:11 25 4
gpt4 key购买 nike

我正在尝试在 View Controller (以编程方式编码)与带有 Storyboard 上的 UI 元素的 ViewController 之间切换。

我试图使用按钮在 HomeControllerTabBarController 之间切换,但按下按钮它会切换到黑屏。如果你们中的一些人能帮助我,我会很高兴。

这是我的代码:

var welcomeLabel: UIButton = {

let label = UIButton()

label.tintColor = .white

label.translatesAutoresizingMaskIntoConstraints = false

label.alpha = 0

label.addTarget(self, action: #selector(handleLogin), for: .touchUpInside)

return label

}()

...............

@objc func handleLogin() {

navigationController?.show(TabBarController(), sender: Any?.self)

}

最佳答案

如果您从 NavigationController 推送 View ,请使用此代码

navigationController?.pushViewController("YourViewController", animated: true)

关于ios - 如何以编程方式在不在同一 Storyboard 上的 View Controller 之间切换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56822350/

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