I need to have an image rotate (for example clockwise) in an iPad application. The image is held inside a view:
UIImageView *view1 = [[UIImageView alloc] initWithFrame:CGRectMake(startX+lineWidth, startY+lineHeight, lineWidth, lineHeight)];
view1.tag = 0;
view1.image = [UIImage imageNamed:[images objectAtIndex:0]];
In
- (void)touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event
I'm doing this:
CGPoint d1 = [touch locationInView:touch.view];
CGPoint d2 = [touch previousLocationInView:touch.view];
CGFloat angle1 = atan2(d1.y, d1.x);
CGFloat angle2 = atan2(d2.y, d2.x);
subview.transform = CGAffineTransformRotate(subview.transform, angle2-angle1);
The view is rotating, but it doesn't go smoothly together with the touch (or the cursor in my development environment.) Rather, it flotes a bit ahead of the touch.
What am I missing?