UINavigationBar Hide back Button Text(UINavigationBar 隐藏按钮文本)
问题描述
如何隐藏 UINavigation 控制器的后退按钮文本?我只会有<"而不是<返回"
How can I hide the Back Button Text from an UINavigation Controller? I will only have the "<" and not "< Back"
推荐答案
在界面构建器中,可以选择上一个控制器的导航项,更改Back Button
字符串到您希望后退按钮显示的内容.如果你想让它空白,例如,只需放置一个空格.
In the interface builder, you can select the navigation item of the previous controller and change the Back Button
string to what you'd like the back button to appear as. If you want it blank, for example, just put a space.
你也可以用这行代码改变它:
[self.navigationItem.backBarButtonItem setTitle:@"Title here"];
或者在 Swift 中:
self.navigationItem.backBarButtonItem?.title = ""
这篇关于UINavigationBar 隐藏按钮文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UINavigationBar 隐藏按钮文本
基础教程推荐
- 在视图控制器的宽度上水平均匀分布 UIButton 的最简单方法? 2022-01-01
- Android - 如何在runOnUiThread 中将数据传递给Runnable? 2022-01-01
- 更改 UITableView 部分标题的颜色 2022-01-01
- 从 UIWebView 访问元数据 2022-01-01
- Firebase 云消息传递令牌未生成 2022-01-01
- EditText 中的 setHintTextColor() 2022-01-01
- UINavigationItem 的持久 rightBarButtonItem 属性 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- UINavigationBar 隐藏按钮文本 2022-01-01
- 在 iOS 7 下 CCMenu 错位 2022-01-01