如何隐藏“后退” UINavigationController中的按钮? [英] How to hide the "back" button in UINavigationController?

查看:161
本文介绍了如何隐藏“后退” UINavigationController中的按钮?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你知道如何隐藏UINavigationController中的后退按钮吗?
另外,如何显示它,但我猜这与隐藏它非常相似...

Do you know how to hide the 'back' button in a UINavigationController? Also, how to show it back, but I guess that's very similar to hiding it...

就像邮件应用程序在iPhone上做的那样在查看电子邮件时点击编辑。

Just like the mail application does on the iPhone when you hit 'Edit' while viewing emails.

推荐答案

我刚刚找到答案,在控制器中使用它:

I just found out the answer, in a controller use this:

[self.navigationItem setHidesBackButton:YES animated:YES];

要恢复它:

[self.navigationItem setHidesBackButton:NO animated:YES];

-

[更新]

Swift 3.0:

Swift 3.0:

self.navigationItem.setHidesBackButton(true, animated:true)

这篇关于如何隐藏“后退” UINavigationController中的按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆