为什么我收到“找不到实例方法”消息?在这里留言?

发布于 2024-12-25 02:01:07 字数 856 浏览 1 评论 0原文

我目前正在使用此处找到的MKHorizMenu类我试图理解为什么我收到一条未找到实例方法的消息。

我试图让应用程序以编程方式执行相当于首次加载视图控制器上的项目的操作。

我的代码:

// Actually select the item
[self.horizMenu.itemSelectedDelegate horizMenu:self.horizMenu itemSelectedAtIndex:0];

// Tap the button (change its background image etc)
NSArray *subs = [self.horizMenu subviews];
[self.horizMenu buttonTapped:(id)[subs objectAtIndex:0]]; // guilty line

警告:

警告:找不到实例方法“-buttonTapped:”(返回类型默认为“id”)

在 < code>MKHorizMenu 类该方法定义为:

-(void) buttonTapped:(id) sender

当我运行代码时,它按预期执行 - 看起来好像第一个按钮具有被窃听,并且第一个项目被选中。

为什么我会收到此警告?我如何在这里正确调用 buttonTapped

I'm currently using the MKHorizMenu class found here and I'm trying to understand why I am getting an instance method not found message.

I'm trying to have the app programatically do the equivalent of tapping on of the items on the view controllers first load.

My code:

// Actually select the item
[self.horizMenu.itemSelectedDelegate horizMenu:self.horizMenu itemSelectedAtIndex:0];

// Tap the button (change its background image etc)
NSArray *subs = [self.horizMenu subviews];
[self.horizMenu buttonTapped:(id)[subs objectAtIndex:0]]; // guilty line

The warning:

warning: instance method '-buttonTapped:' not found (return type defaults to 'id')

In the MKHorizMenu class the method is defined as:

-(void) buttonTapped:(id) sender

When I run the code, it performs as desired - it appears as if the first button has been tapped, and the first item is selected.

Why do I get this warning? How can I call buttonTapped properly here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情绪操控生活 2025-01-01 02:01:07

您可以通过将 buttonTapped: 的方法声明添加到类的头文件中来停止警告。

You can stop the warning by adding the method declaration for buttonTapped: to the header file for the class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文