tags:

views:

25

answers:

1

Are the parent classes always referenced by the inferface not the implementation?

@interface MyClass : ParentClass

@end

@implementation MyClass

@end
+1  A: 

Yes. Because the syntax is just like this.

KennyTM
Interesting way of doing it!