如何阻止特定uiview的触摸移动事件?
-(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];
}
}