- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
NSSet *allTouches = [event allTouches];
UITouch *touch = [[event allTouches] anyObject];
CGPoint lastPoint = [touch locationInView:self.view];
//animation code
}
Используя вышеописанный метод, вы установили UIimageView center на lastPoint и воспроизводите код анимации.Это будет работать так, как ты хочешь.