Sunday, April 22, 2012

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];
}
출처 : Error "Sending 'ccColor4B' (aka 'struct_ccColor4B') to parameter of incompatible type 'CIColor *'"
키워드 : cocos2d

No comments:

Post a Comment