I'm noob in ios development. I need some help. I have custom UIButton with picture "arrow", so I need to rotate this button by pressing and moving finger in +360 gr. and -360 gr., like compass arrow.
How to Rotate UIButton by tap and hold (hold - rotate by finger)
783 Views Asked by Tunyk Pavel At
2
There are 2 best solutions below
0

In detail, you can custom a rotateView,then:
1: In the delegate method of "touchesBegan
", get initialPoint
of finger and initialAngle
.
2: During "touchesMoved
",get the newPoint
of finger:
CGPoint newPoint = [[touches anyObject] locationInView:self];
[self pushTouchPoint:thePoint date:[NSDate date]];
double angleDif = [self angleForPoint:newPoint] - [self angleForPoint:initialPoint];
self.angle = initialAngle + angleDif;
[[imageView layer] setTransform:CATransform3DMakeRotation(angle, 0, 0, 1)];
3: At last, in "touchesEnded
" you can calculate final AngularVelocity
.
If anything being confused, for more detail, you can write back.
Here is code that makes rotation.