Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在左上角有自动生成的后退按钮,但我想添加一个 UIButton 在我的视图底部执行相同的操作。
那可能吗?
谢谢!
如果您使用的是 UINavigation 控制器,您可以注册一个按钮处理程序并添加代码
[[self navigationController] popViewControllerAnimated:YES];
这将提供与将视图添加到视图堆栈时生成的后退按钮相同的功能。
是的,只需将按钮连接到调用[self.navigationController popViewControllerAnimated:YES](或NO,取决于您的意愿)的方法。
[self.navigationController popViewControllerAnimated:YES]
NO