return [[(CCColorLayer*)[self alloc] initWithColor:color] autorelease];
报错 return [[[self alloc] initWithColor:color] autorelease] 改为以下内容
最新推荐文章于 2020-09-05 18:41:43 发布
return [[(CCColorLayer*)[self alloc] initWithColor:color] autorelease];