0
votes
1answer
201 views

iOS rotation animation does not happen smoothly in CAAnimationGroup

I have 3 animations running in a group: position, scale and rotation However my rotation animation does not happen smoothly. It happens abruptly in the beginning, while other animations happen ...
0
votes
0answers
226 views

Rotating CALayer around z-axis goes wild

I have a custom UIView (RoundProgressView), which has inside a layer (progressLayer) which has another layer as a sublayer (imageLayer). ProgressLayer has animatable property "progress". Here is my ...
3
votes
1answer
2k views

CABasicAnimation how to get current angle of rotation

I have some problem with CABasicAnimation. It`s similar to that post: CABasicAnimation rotate returns to original position So, i have uiimageview that rotate in touchMove. In touchEnd invoke method ...
1
vote
1answer
131 views

Rotating a path for a CAAnimation

I'm animating some stuff using CAAnimation, & it involves making a fairly complex path using CGPathAddCurveToPoint, maybe 10 - 15 of these per path. Is there a way, instead of recalculating every ...