No description
Find a file
2014-01-13 22:39:30 +01:00
OneFingerRotation Call super implementation for reset method. Change reference view to window. 2013-10-16 10:13:10 +02:00
OneFingerRotation.xcodeproj Initial NGRotationGestureRecognizer demo project. 2013-09-08 21:03:42 +02:00
.gitignore Initial commit 2013-09-08 11:39:33 -07:00
LICENSE Initial commit 2013-09-08 11:39:33 -07:00
README.md Update README.md 2014-01-13 22:39:30 +01:00

One Finger Rotation Gesture Recognizer

NGRotationGestureRecognizer is a concrete subclass of UIGestureRecognizer that looks for rotation gestures involving one touch. Rotation is calculated between initial and current finger position around center of the view where gesture recognizer is added to.

Rotation can be set any time for convenience.

- (void)handleRotationGesture:(NGRotationGestureRecognizer *)gestureRecognizer
{
    if (gestureRecognizer.state == UIGestureRecognizerStateBegan) {
        gestureRecognizer.rotation = atan2(self.twirlImageView.transform.b, self.twirlImageView.transform.a);
    }
    else if (gestureRecognizer.state == UIGestureRecognizerStateChanged) {
        self.twirlImageView.transform = CGAffineTransformMakeRotation(gestureRecognizer.rotation);
    }
}