Swift 重命名后退导航项

Swift renaming the back navigation item(Swift 重命名后退导航项)
本文介绍了Swift 重命名后退导航项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在导航控制器中编辑 返回项 的磁贴.

I'm trying to edit the tile of the back item in the navigation controller.

我有这个场景,Navigation Controller -> Table View Controller -> TableViewController.

在第二个 TableViewController 中,我想将后面的项目从xxxx"重命名为Back".

In the second TableViewController I want to rename the the back item from "xxxx" to "Back".

有没有办法通过 StoryBoard 完成,还是应该以编程方式?

Is there a way to do via the StoryBoard, or should I do it programmatically?

这是我尝试过的,但它不起作用:

This is what I've tried but it does not work:

let backItem = UIBarButtonItem()
backItem.title = "Back"
navigationItem.backBarButtonItem? = backItem

navigationItem.backBarButtonItem?.title = "back"

它们都在 viewDidLoad() 中

both of them in the viewDidLoad()

推荐答案

是的,你可以用 StoryBoard 做到这一点.选择 TableViewController 中的 NavgationItem 您已嵌入 NavgationController 之后,在 Attribute Inspector 中设置 Back Button 带有您想要的标题,它是 Back.

Yes, you can do that with StoryBoard. Select the NavgationItem in TableViewController that you have embedded in NavgationController after that in the Attribute Inspector set the Back Button with title that you want in your case it is Back.

这篇关于Swift 重命名后退导航项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
Dropbox Files.download does not start when number of files in folder is gt; 1000(当文件夹中的文件数为1000时,Dropbox Files.Download不会启动)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)