在我的实现模型中,我需要一些不同的文件,以及一些类似的方法。另外,我在 a 中收集不同类型的对象NSMutableArray
,并尝试像这样调用我的类似方法:
[[ArrayOfViews objectAtIndex:i] myMethodWithInt:'number' andExample:'char'];
但它给了我一个警告:
Instance method '...' not found (return type defaults to 'id')
我的代码有效,但我应该修复这个警告吗?