1,原来的CC前缀基本都被移除,如CCScene变成Scene,cclayerColor变成LayerColor,
2,CCMutableArray变成了Array(CCMutableArray已移除)等
4.原来的shared*单例方法多改为get*,如CCDirector::sharedDirector()改为Director::getInstance()
5.原来的spriteWith*,initWith*等静态方法,多修改为create。如CCMoveto::actionWithDuration改为Moveto::create,CCArray::array()改为Array::create()等。
6,原来的sets*方法改为set*,如如setIsVisible变成setVisible,setIsTouchEnabled变成等setTouchEnabled。