This commit is contained in:
Wojciech Nagrodzki 2014-01-14 10:58:20 +01:00
commit 4ad242e002
Signed by: wnagrodzki
GPG key ID: E9D0EB0302264569

View file

@ -1,2 +1,18 @@
OneFingerRotation
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.
```Objective-C
- (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);
}
}
```