gpt4 book ai didi

ios - 发送到实例的无法识别的选择器

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

我正在尝试在 iPhone 上获取弹出菜单。主应用程序使用 Storyboard,但弹出窗口是我加载的一个单独的 xib 文件:

menu = [[UIViewController alloc] initWithNibName:@"SimpleMenuController" bundle:nil];
[self.view addSubview:menu.view];

我在按下按钮时用动画将它滑入和滑出。

工作正常,但是当我尝试按下弹出菜单中的按钮时出现问题

我收到以下错误:

Terminating app due to uncaught exception 'NSInvalidArgumentException', 
reason: '-[UIViewController PressCategory:]:
unrecognized selector sent to instance 0x8d3c040'

我已将按钮连接到 PressCategory 函数我已将 View 连接到文件所有者。

我注意到我的 ViewController 叫做 SimpleMenuViewController,那是 PressCategory 函数所在的地方,所以它当然不会找到选择器。但是我不知道我在 xib 文件中连接时做错了什么。

最佳答案

将您的代码更改为:

menu = [[SimpleMenuViewController alloc] initWithNibName:@"SimpleMenuController" bundle:nil];

这样您就可以实例化正确的类。

关于ios - 发送到实例的无法识别的选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19824180/

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