Я не смог найти тему с моей проблемой. Мне нужно изображение1, чтобы перейти к точке, к которой я прикасаюсь. Сбой программы при выполнении этого блока кода:
-(void)ccTouchEnded:(UITouch *)touch withEvent:(UIEvent *)event {
CGPoint touchedLocation = [touch locationInView: [touch view]];
CGPoint convertedLocation = [[CCDirector sharedDirector]convertToGL:touchedLocation];
[imageOne stopAllActions];
[imageOne runAction:[CCMoveTo actionWithDuration:4 position:convertedLocation]];
}