gpt4 book ai didi

ios - 用于在 IOS 中关闭 ViewController 的按钮处理程序语法

转载 作者:行者123 更新时间:2023-11-28 23:38:24 24 4
gpt4 key购买 nike

我在代码中创建了一个自定义 UIBarButton 以关闭自定义 viewController。然而,编译器不喜欢我的语法。

下面是创建 UIBarButtonItem 的代码:

//grab VC
detailC* detailVC = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"detailVC"]; //This custom VC
is a sub-class of UIViewController

//Create barbuttonitem
UIBarButtonItem *leftButton = [[UIBarButtonItem alloc]
initWithImage:[UIImage imageNamed:@"close.png]
style:UIBarButtonItemStylePlain
target:self
action:@selector(dismss:detailVC)];//ERROR HERE

//Here is the dismiss method:
-(void) dismissVC: (UIViewController*) vc {

[vc dismissViewControllerAnimated:YES completion:nil];
}

编译器的错误是:'Expected :'

insert : 有一个修复选项。如果我选择修复,它会将选择器更改为:

action:@selector(dismissVC: controller:)];

这没有意义并且还给出了警告 'Undeclared Selector"

我做错了什么?

注意:这是在 appDelegate 中进行的,所以我不能使用 self 来关闭 VC。

最佳答案

您尝试做的根本不正确。 dismissVC: 方法可以采用的唯一有效参数是触发操作的 UIBarButtonItem。您不能将 View Controller 传递给该方法。

但你不需要。由于您想要关闭“self”,只需在 self 上调用 dismissViewController

//Create barbuttonitem
UIBarButtonItem *leftButton = [[UIBarButtonItem alloc]
initWithImage:[UIImage imageNamed:@"close.png"]
style:UIBarButtonItemStylePlain
target:self
action:@selector(dismiss:)];

这是更新的方法:

- (void)dismiss:(UIBarButtonItem *)button {
[self dismissViewControllerAnimated:YES completion:nil];
}

关于ios - 用于在 IOS 中关闭 ViewController 的按钮处理程序语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54240271/

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