わかりません。これを機能させることは絶対にできません。アニメーションを再生し、CCAnimateansCCMoveToクラスを使用してスプライトを移動する一連のアクションが必要です。これらのクラスにバグや特別な何かがありますか?このようなアクションの CCSequence で一緒に文字列を並べると、移動したりアニメーション化したりしません。
    action = [CCSequence actions:
                              [CCMoveTo actionWithDuration:moveDuration position:touchLocation],
                              [CCAnimate actionWithAnimation:self.walkingAnim],
                              [CCCallFunc actionWithTarget:self selector:@selector(objectMoveEnded)], nil];
 [self runAction:action];
私