Как можно предотвратить событие с перемещением касания для определенного просмотра?
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
for (UITouch *touch in touches)
{
currentTouch=touch;
}
if (CGRectContainsPoint([ViewRotationArrow frame],[currentTouch locationInView:self.view]))
{
[self transformSpinnerwithTouches:currentTouch];
}
}