同じビューに2つのUIImageViewがありますが、それらを別々に移動したいのですが、最初のものを移動すると、2番目のものは固定されたままになり、逆になります。
- (void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [[event allTouches] anyObject];
CGPoint location = [touch locationInView:[self view]];
[imageView1 setCenter:location];
[imageView2 setCenter:location];
}