vote up 1 vote down star

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

flag
2  
Uh... so what's your question...? – Dave DeLong Sep 19 at 17:08
I wanted to provide a good reference for those trying to solve this error. :D – CrazyJugglerDrummer Sep 19 at 17:33

closed as not a real question by Dave DeLong, Alex Reynolds, Brad Larson, Peter Hosey, sth Sep 19 at 23:34

1 Answer

vote up 2 vote down

Straight forward error:

void foo(int a) {
    ;
}

int main (int argc, const char * argv[]) {
    char *bar = alloca(10);
    foo(bar); //warning: passing argument 1 of
              //         'foo' makes integer from pointer without a cast
    return 0;
}

The compiler is complaining because the call foo(bar) causes the pointer type variable bar to be passed to a function that takes an int argument. Since pointer sizes and integer sizes can be different on some platforms, the compiler complains.

The same holds true with the argument types to methods. If you try to pass a pointer to a method that takes an int as an argument, you'll see that warning.

What you want to avoid in all cases in Objective-C is this:

@interface Foo
- (void) doSomething: (int) a;
@end

@interface Bar
- (void) doSomething: (NSNumber *) b;
@end

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.

link|flag
1  
You also more commonly get this error if you call a method that has not been declared (or the relevant headers not imported) and pass an integer value as an argument. If a method signature is not found for a method, the compiler assumes that it has a return type and argument values of id – which is a pointer type. – Perspx Sep 19 at 17:29
Quite true, though that warning should also come with an "unrecognized method" warning, too. – bbum Sep 19 at 20:24

Not the answer you're looking for? Browse other questions tagged or ask your own question.