프로그래밍/Cocos2D2012. 2. 8. 01:15
1. CCActionGrid.m 파일의
    
"Incompatible pointer types assigning "CCActionInterval*" from "CCAction*" 에러

other = [action retain]; 부분을
other = (CCActionInterval*) [action retain]; 로 변경  
  



2. ZAttributedString.m 파일의 에러

ZAttributeRun *newRun = [[ZAttributeRun allocinitWithIndex:NSMaxRange(range) attributes:[[_attributes lastObject]attributes]]; 를
ZAttributeRun *newRun = [[ZAttributeRun allocinitWithIndex:NSMaxRange(range) attributes:(NSDictionary*)[(ZAttributeRun *)[_attributes lastObjectattributes]]; 로 변경

ZAttributeRun *newRun = [[ZAttributeRun alloc] initWithIndex:NSMaxRange(range) attributes:[[_attributes objectAtIndex:firstAfter-1] attributes]]; 를

ZAttributeRun *newRun = [[ZAttributeRun allocinitWithIndex:NSMaxRange(range) attributes:(NSDictionary*)[(ZAttributeRun *)[_attributes objectAtIndex:firstAfter-1attributes]]; 로 변경   


3.  CCDirevctorIOS.m 파일의 에러

UIDeviceOrientationPortraitUpsideDown 부분을
UIInterfaceOrientationPortraitUpsideDown 로 변경  

Posted by windship