mirror of
https://github.com/wnagrodzki/OneFingerRotation.git
synced 2025-04-04 19:42:24 +02:00
Merge branch 'master' of https://github.com/wnagrodzki/OneFingerRotation
This commit is contained in:
commit
4ad242e002
1 changed files with 17 additions and 1 deletions
18
README.md
18
README.md
|
@ -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);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue