私は最初にオブジェクトを選択する方法を理解しようとしています、それから私はそれを動かすことができます。たとえば、最初に牛に触れて選択したいのですが、次に牛を動かすことができます。その理由は、画面に触れていると、牛と牛の両方が動いているからです1。一度に1頭だけ動かしたいとき。どんな助けでもありがたいです。
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
CGPoint touchLocation = [touch locationInView:touch.view];
cow.center = CGPointMake(touchLocation.x, touchLocation.y);
cow1.center = CGPointMake(touchLocation.x, touchLocation.y);
}