我已将我的.h文件导入第二个,但在第二个我正在尝试:
FirstClass *firstClass = [FirstClass alloc] init];
[firstClass iconWithType:test];
要匹配:
-(void)iconWithType:(NSString *)iconType
但它没有将iconWithType列为建议,我收到警告说它可能没有回应。
我怎样才能让它正常工作?
我的FirstClass是一个UIView。
答案 0 :(得分:2)
在FirstClass.h文件中,您是否在interface
?
即
@interface FirstClass : NSObject {
}
- (void)iconWithType:(NSString *)iconType;
@end
此外,该方法的名称意味着应返回一些内容。但是,它被标记为无效。
答案 1 :(得分:0)
我猜你只是有一个返回类型不匹配。看一看:-iconWithType:
实际上会返回void
吗?还是会返回UIImage
或其他东西?