gpt4 book ai didi

ios - 快速将后退按钮移至工具栏?

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

在我的项目中,我想在显示底部的工具栏中添加后退按钮。

我将我的 UIViewController 嵌入到导航 Controller 中,并且还有底部工具栏。但后退按钮默认位于导航 Controller 的左上角。

最佳答案

您不能将后退按钮从 navBat 移到工具栏,但您可以添加自定义按钮。

self.tabBarController?.navigationItem.hidesBackButton = true
self.navigationController?.toolbarHidden = false
var items = [UIBarButtonItem]()
items.append(
UIBarButtonItem( title: "Back", style: .Plain, target: self, action: #selector(gotoBack))
)
self.navigationController?.toolbar.items = items

并添加到ViewController函数

func gotoBack(){
self.navigationController?.popViewController(animated: true)
}

关于ios - 快速将后退按钮移至工具栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40352907/

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