gpt4 book ai didi

ios - 具有多个来源的后退按钮

转载 作者:行者123 更新时间:2023-11-28 11:41:15 26 4
gpt4 key购买 nike

在我的应用程序中,我想创建一个用户配置文件 Controller ,可以从多个不同的 Controller 导航到该 Controller 。我希望它有一个后退按钮,可以将用户带回到他们来自的任何 Controller 。

我该怎么做?

最佳答案

关闭

添加 UIButton 用于向后导航到您的 UserProfileController 的某处。然后在 UserProfileController 中创建操作并将其设置为按钮的操作。此操作关闭您的 UserProfileController(因此您返回到之前的 UIViewController)

@IBAction func backButtonPressed(_ sender: UIButton) {
dismiss(animated: true, completion: nil)
}

UINavigationController

或者,您可以将以前的 ViewControllers 嵌入到 UINavigationController 中。然后您将能够点击 UINavigationBar 中的后退按钮(默认设置),这会让您回到上一个 UIViewController

关于ios - 具有多个来源的后退按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53619756/

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