作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个 View ,都是 UIViewController,第一个 View 包含一个带有按钮的表格 View ,该按钮可连接到第二个 View 的相机 View 。
所以第一个 ViewController 已经在 Storyboard中完成,包括通过“Show”完成的第二个 ViewController 的转场。第二个 ViewController 大部分是在代码中完成的,我有一个 UIImageView,我也添加了一个选择器方法,我想用它在按下时导航回第一个 ViewController。
如何在代码中执行此操作,因为当前我为第二个 ViewController 创建了 UIImageView 叠加层,该叠加层完全以代码形式呈现相机 View 。
目前这是我在代码中创建的启动方法
//.....
UIImage * myImage = [UIImage imageNamed: @"Avatar_Mel"];
UIImageView *avatar = [[UIImageView alloc] initWithImage: myImage];
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(mySequeMethod)];
avatar.userInteractionEnabled = YES;
[avatar addGestureRecognizer:tap];
//.....
- (void)mySequeMethod {
// what should I do here? How to I show the first view controller again?
}
最佳答案
如果模态呈现第二个 Controller
[self dismissViewControllerAnimated:YES completion:nil];
在导航栈的情况下
[self.navigationController popViewControllerAnimated:YES];
关于ios - 如何在 objective-c 中的按钮 Segue 后导航回来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42744308/
我是一名优秀的程序员,十分优秀!