A while ago, I asked this question after getting said error in objective C. I've noticed that the question has been getting a very steady stream of views every day. The question solved my problem, but I don't think its the ideal reference for those who are getting the error and looking for help on StackOverflow. So lets compile a better reference, about what the error is, and how to fix it. :D
|
|
|||||||
|
closed as not a real question by Dave DeLong, Alex Reynolds, Brad Larson, Peter Hosey, sth Sep 19 at 23:34 |
|
|
Straight forward error:
The compiler is complaining because the call The same holds true with the argument types to methods. If you try to pass a pointer to a method that takes an What you want to avoid in all cases in Objective-C is this:
As you'll now have a single selector -- doSomething: -- that takes different kinds of arguments. When this happens, the compiler will warn unless the target of a method call is quite explicitly a Foo* or a Bar*. If you look at the system provided frameworks, there are very very few methods that exhibit the above mis-pattern. |
||||||
|
