找不到方法(返回类型默认为'id')

时间:2010-08-26 20:24:11

标签: iphone llvm clang

有谁知道这个LLVM警告意味着什么:

Method '-retry' not found (return type defaults to 'id') in sourceFile.m

我在sourceFile.m的以下行中收到此警告:

[self.operation retry];

我的类有一个变量'operation',它是一个扩展NSOperation的自定义类。

MyCustomOperation* operation;

@property (nonatomic, retain) MyCustomOperation* operation;

我的自定义操作类有一个方法:

- (void) retry;

一切似乎都有效,但我确实很想摆脱我的警告。

谢谢!

2 个答案:

答案 0 :(得分:3)

您是否在界面中也有方法声明- (void) retry;,而不仅仅是实现?

答案 1 :(得分:1)

您应该检查是否已导入MyCustomOperation.h