I'm using a UIRotationGestureRecognizer to rotate a UIImageView. By adding all small rotation changes to a CGFloat, I try to calculate the total rotation of the UIImageView. It does fine, but somehow the rotation property of the gesture sometimes has a very large value. Normally, when rotating slow, it sits around 0.00##, but then it suddenly starts giving values like 6.##. The end result is a total of > 300 radians, which is ridiculous - over 47 'revolutions' for just a millimeter worth of finger movement.
Does anyone know what causes this, and more importantly, have a solution to it?
Here's some code:
if ([gesture state] == UIGestureRecognizerStateBegan || [gesture state] == UIGestureRecognizerStateChanged)
{
totalRotation += [gesture rotation];
NSLog(@"%f", [gesture rotation]);
[gesture view].transform = CGAffineTransformRotate([[gesture view] transform], [gesture rotation]);
[gesture setRotation:0];
}
else
{
NSLog(@"rot: %f", totalRotation);
}