报错原因是类型识别的问题,多个类具有initWithColor:方法,导致此处未作类型声明不能识别。
解决办法:
+ (id) layerWithColor:(ccColor4B)color {
return [[(CCColorLayer*)[self alloc] initWithColor:color] autorelease];
}
报错原因是类型识别的问题,多个类具有initWithColor:方法,导致此处未作类型声明不能识别。
解决办法:
+ (id) layerWithColor:(ccColor4B)color {
return [[(CCColorLayer*)[self alloc] initWithColor:color] autorelease];
}