"Incompatible pointer types assigning "CCActionInterval*" from "CCAction*" 에러
other = [action retain]; 부분을 ZAttributeRun *newRun = [[ZAttributeRun alloc] initWithIndex:NSMaxRange(range) attributes:(NSDictionary*)[(ZAttributeRun *)[_attributes objectAtIndex:firstAfter-1] attributes]]; 로 변경
other = (CCActionInterval*) [action retain]; 로 변경
2. ZAttributedString.m 파일의 에러
ZAttributeRun *newRun = [[ZAttributeRun alloc] initWithIndex:NSMaxRange(range) attributes:[[_attributes lastObject]attributes]]; 를
ZAttributeRun *newRun = [[ZAttributeRun alloc] initWithIndex:NSMaxRange(range) attributes:(NSDictionary*)[(ZAttributeRun *)[_attributes lastObject] attributes]]; 로 변경
ZAttributeRun *newRun = [[ZAttributeRun alloc] initWithIndex:NSMaxRange(range) attributes:[[_attributes objectAtIndex:firstAfter-1] attributes]]; 를
3. CCDirevctorIOS.m 파일의 에러
UIDeviceOrientationPortraitUpsideDown 부분을
UIInterfaceOrientationPortraitUpsideDown 로 변경
'프로그래밍 > Cocos2D' 카테고리의 다른 글
xcode 4.3.2 - CLScoreServerPost.m Warning 발생에 대해 (0) | 2012.04.08 |
---|---|
plist 키값 가져오기 (0) | 2012.02.09 |
CCLabelTTF - Font Stroke Demo (0) | 2012.02.06 |
cocos2D 레티나 지원 관련 (0) | 2012.02.05 |
cocos2D 레티나 해상도 개발시 point 하나로 개발하기 (0) | 2012.02.05 |