将取消 UIButton 添加到 UINavigationcontroller

Posted

技术标签:

【中文标题】将取消 UIButton 添加到 UINavigationcontroller【英文标题】:adding Cancel UIButton to UINavigation controller 【发布时间】:2013-08-15 20:59:26 【问题描述】:

我正在使用情节提要,我在视图控制器中添加了一个导航栏,我在导航栏中添加了两个栏按钮(在情节提要中不是代码),一个是“保存”按钮,另一个是“取消”按钮。

现在我希望当我按下取消按钮时,已经查看过的控制器消失并且前一个视图控制器显示出来。我应该在取消按钮的操作方法中包含什么代码:

- (IBAction)cancel:(id)sender 

    // what code should be written here ?

【问题讨论】:

【参考方案1】:

这首先取决于您如何呈现视图控制器。如果您以模态方式呈现它,那么您将使用它:

[self dismissViewControllerAnimated:YES completion:nil];

但是,如果你通过导航控制器推送到当前视图控制器,那么你会使用这个:

[self.navigationController popViewControllerAnimated:YES];

【讨论】:

以上是关于将取消 UIButton 添加到 UINavigationcontroller的主要内容,如果未能解决你的问题,请参考以下文章

怎样在键盘顶部添加UITextField和一个UIButton??

如果将 UIButton 作为子视图添加到 UIImageView,则单击 UIButton 不起作用

将 UIButton 动态添加到 UITableViewCell 错误

选择一个时取消选择所有 UIButton

将 UIButton 添加到 UICollectionViewCell 时的奇怪行为

将 CAShapeLayer 添加到 UIButton 不起作用