例:
@class MyRootObject;
@interface MyObject : MyRootObject
@end
フォーム XCode の取得:
Class MyObject defined without specifying a base class.
MyRootObject クラスは次のとおりです。
@interface MyRootObject : NSObject
- (id)init;
@end
@implementation MyRootObject
- (id)init
{
self = [super init];
if(self){
// some code here
}
return self;
}
@end