답 : 기존 코드를 다음과 같이 고쳐준다.
// 에러 나서 고친 것출처 : Error "Sending 'ccColor4B' (aka 'struct_ccColor4B') to parameter of incompatible type 'CIColor *'"
//+ (id) layerWithColor:(ccColor4B)color
//{
// return [[[self alloc] initWithColor:color] autorelease];
//}
+ (id) layerWithColor:(ccColor4B)color
{
return [[(CCColorLayer*)[self alloc] initWithColor:color] autorelease];
}
키워드 : cocos2d
No comments:
Post a Comment