1.

What is an instanceType?

Answer»

@INTERFACE A:
NSObject;
@end
@interface B : A
@end

Here, the init method is INHERITED from A to B. HOWEVER, the method has a different return type in both CLASSES.



Discussion

No Comment Found