Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently learning objective-c from a book. In one example, before the class interface of a particular header file, it reads @class followed by two protocol declarations.

@class Thing;

@protocol Foo
-(void)foo:(Thing *);
@end;

@protocol Bar
-(void)bar:(Thing *);
@end;

@interface Thing : NSObject <Foo, Bar>
...

I understand that @class is used to prevent circular references, however I do not understand what is going on below that. Why are the protocols declared there, rather than in the @interface block?

share|improve this question

1 Answer

up vote 0 down vote accepted

Are they declared normally or forward declared?

In the former case then it's just a declaration of a custom protocol, which is probably used by a class that is defined below (eg. @interface MyClass : Object<MyProtocol>. Otherwise it's a forward declaration needed for the same specific reason of a class forward declaration.

share|improve this answer
I think I understand what is going on now. My confusion was that I thought the @class statement and the two protocol declarations went hand in hand and had something to do with each other. @class was simply informing the compiler that that a class of that name existed, because a reference was being used in the protocol declaration. Thanks for your help! – Fitzy Apr 2 '12 at 4:12
Yes, that's a forward declaration indeed :) – Jack Apr 2 '12 at 4:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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