gpt4 book ai didi

swift - 如何在 Swift3.0 的第一个场景中放置后退按钮?

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

我有两个 Storyboard,SB_A,SB_B所以当我点击 SB_A 的按钮时,它会调用

let storyboard: UIStoryboard = UIStoryboard(name: "SB_B", bundle: nil)
let nextView = storyboard.instantiateInitialViewController()
self.present(nextView!, animated: true, completion: nil)

所以我可以看到 SB_B Storyboard。但是我在 SB_B 的第一个场景中看不到后退按钮 enter image description here

我想在正确的场景中放置后退按钮,当我点击它时,返回到 SB_A Storyboard。

如何在 Storyboard的第一个场景中放置后退按钮?

最佳答案

在 SB_B viewdidload 中添加这些行

navigationItem.leftBarButtonItem = UIBarButtonItem(title: "Back", style: .plain, target: self, action: #selector(self.leftNavigationItemAction(_:)))
}

@objc func leftNavigationItemAction(_ sender: UIBarButtonItem) -> Void {
_ = popOrDismissViewController(true)
}

试试这个……

关于swift - 如何在 Swift3.0 的第一个场景中放置后退按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53113120/

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