1
vote
1answer
83 views

Sequential CAKeyFrameAnimations disappearing on screen

EDIT: Attached code for CAAnimationGroup, the animations draw sequentially, but I'm still getting the problem that firstAnimation disappears once secondAnimation starts and I've noticed in the ...
1
vote
1answer
212 views

Transforming a Stroked CAShapeLayer

I have a CAShapeLayer which contains a CGMutablePath that has a stroke drawn around it. In my app, I transform this CAShapeLayer to increase / decrease it's size at certain times. I'm noticing when I ...
0
votes
1answer
78 views

How do I start ios shape animations at different times based on the position of another shape that is already moving

I'm trying to do the following animation for my iPhone App. My current thoughts are to inherit from CAShapeLayer and build up a shape that has the 3 components for the animation. I.e. the yellow ...
0
votes
0answers
210 views

iOS- Syncing an animation group with drawing a line

My issue is similar to Drawing a path with CAKeyFrameAnimation on iPhone. What I would like to happen is this: There is an object that moves along a user-defined path. The path will move forward ...
1
vote
1answer
184 views

How to change polygon shape in CAShapeLayer by tapping its corners?

I am drawing a CAShapeLayer with a polygon with 8 corners. I want to change the shape of the polygon by dragging one or multiple corners at a time. How can i achieve this? CHeers AF
0
votes
1answer
1k views

Alternative to using CABasicAnimation callbacks?

CAAnimation does not provide a mechanism for assigning callback functions other than the standard "animationDidStart:"/"animationDidStop:" methods. I have a custom UIControl that utilizes 2 CALayers ...