gpt4 book ai didi

ios - 如何在 objective-c 中的按钮 Segue 后导航回来

转载 作者:行者123 更新时间:2023-11-29 00:26:55 24 4
gpt4 key购买 nike

我有两个 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com