如何获取 backBarButtonItem 中的文本?
有谁知道如何在使用 UINavigationController 时获取 backBarButtonItem 的文本内容?这是上一个视图的名称,但我想在下一个视图中获取它。
谢谢!
does anyone knows how to get the text content of a backBarButtonItem when using a UINavigationController ? It's the name of the previous view but I'd like to get it in the next view.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是获取导航控制器 viewController 堆栈中上一个 viewController 的标题的一种方法:
Here's one way to get the title of the previous viewController in the navigation controller viewController stack:
您需要使用以下方法创建 UIBarButtonItem:
然后将目标附加到您的方法,并且可以在您的方法中弹出控制器。
You need to create a UIBarButtonItem using:
Then you attach the target to your method and you can pop the controller in your method.
它是
UIBarItem
的属性:backBarButtonItem.title
It's property of
UIBarItem
:backBarButtonItem.title