No description
Find a file
2014-01-14 10:58:20 +01:00
OneFingerRotation Refactor gesture recognizer class name 2014-01-14 10:58:16 +01:00
OneFingerRotation.xcodeproj Refactor gesture recognizer class name 2014-01-14 10:58:16 +01: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);
    }
}