vote up 1 vote down star
@protocol Eating
@end

@interface Eat : NSObject<Eating>
{
}
- (id<Eating> *)me;
@end

@implementation Eat
- (id<Eating> *)me { return self; }
@end

In the above piece of Objective-C code, why does "return self" result in a "Return from incompatible pointer type" warning? What's the incompatible pointer type and how to fix it?

flag
1  
Use @protocol Eating <NSObject> - it will let you use NSObject methods on those objects, rather than only methods you require. – porneL Sep 7 at 0:31

5 Answers

vote up 0 vote down

remove id * and replace with id. id is already a pointer.

link|flag
vote up -1 vote down

Okay .. answer is "id" instead of "id *".

link|flag
You should accept one of the answers that were given to you. – Blaenk Sep 6 at 21:47
Please accept an answer, so it gets highlighted on the site. – pgb Sep 6 at 21:48
Why downvote? He posted this as the first one because he figured the problem out himself. – gs Sep 7 at 8:24
vote up 0 vote down

You are slightly off in your use - it's:

- (id<Eating>)me { return self; }

(because you are returning id, not a pointer to an object).

link|flag
vote up 1 vote down

Because id is a pointer itself, you don't need the asterisk.

@interface Eat : NSObject<Eating> {
}
- (id<Eating>)me;
@end
link|flag
It's an asterisk, not an Asterix: en.wikipedia.org/wiki/Asterix ;) (took me three times to get this comment right!) – dreamlax Sep 7 at 14:14
vote up 2 vote down

Because id is essentially NSObject * (although there are some minor differences). Thus, when you return self, you are returning -(NSObject *). What you have is id * which is like NSObject **.

link|flag
1  
id is a typedef for struct objc_object*, not NSObject *. The difference is significant. – dreamlax Sep 7 at 14:06
OK. – jbrennan Sep 7 at 17:02

Your Answer

Get an OpenID
or

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