我有一个自定义类,它是SKSpriteNode
的子类。我试图覆盖返回spriteNodeWithColor:size:
的{{1}}方法。我试试这个:
instancetype
但每次都会崩溃。在此先感谢您的帮助
答案 0 :(得分:5)
您需要致电super
:
- (instancetype)initWithColor:(UIColor *)color size:(CGSize)size {
self = [super initWithColor:color size:size];
if (self) {
// do other setup stuff here
}
return self;
}