gpt4 book ai didi

objective-c - 如何忽略 "No visible @interface for X declares the selector"?

转载 作者:可可西里 更新时间:2023-11-01 03:30:10 24 4
gpt4 key购买 nike

在 ARC 之前,我有一个“X may not respond to xxx”warning,这是一个非常无害的警告,不会阻止它编译。现在,我正在尝试将我的项目转换为 ARC,并且我有一个“No visible @interface for X declares the selector xxx”error,这会阻止它编译。<​​/p>

我清楚地知道我在做什么,为什么会有警告,我可以告诉你程序是正确的。以前,编译器编译它没有问题,现在不应该阻止它编译。<​​/p>

类 X 的接口(interface)确实没有声明该选择器,但 X 是一个类,它使用 forwardInvocation: 动态处理发送给它的任何选择器的任何消息: (这是 Objective-C 的美妙之处之一),因此它的接口(interface)不可能声明所有可以在其上调用的选择器。选择器在某处声明的,只是不在 X 上。

最佳答案

I know exactly what I am doing, and why the warning was there, and I can tell you that the program is correct.

OK -- 只需使用 objc_msgSend 等。如果您想执行编译器的工作,请直接执行。

It is true that class X's interface does not declare that selector, but X is a class that dynamically handles any message with any selector sent to it, using forwardInvocation: (that is one of the beautiful things about Objective-C), so its interface cannot possibly declare all the selectors that can be called on it. And the selector is declared somewhere, just not on X.

如果声明太乏味但又不足以在消息传递中使用,这似乎与您的程序对选择器的使用相矛盾……听起来像是生成代码的危险领域,需要大量的人为干预。

也许您应该考虑声明一个协议(protocol),这样编译器至少可以为您正确设置消息调用——如果您更改或破坏某些内容,它有机会适应或通知您。

关于objective-c - 如何忽略 "No visible @interface for X declares the selector"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13485414/

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