Search Results

0
votes
4answers
797 views

Animation End Callback for CALayer?

Hi all. I'm wondering where the callbacks are (or if there are anything) for animations in a CALayer. Specifically, for implied animations like altering the frame, position, etc. In a UIView, you c …
1
vote

Timer and animation events trumping TouchesEnded events

Try writing your own Timer-type class by spawning off onto a thread. Example: BOOL continue = YES; //outside of your @implementation -(void)doLoop { while(continue){ [NSTh …
1
vote

Animation End Callback for CALayer?

I answered my own question. You have to add an animation using CABasicAnimation like so: CABasicAnimation* anim = [CABasicAnimation animationWithKeyPath:@"frame"]; anim.fromValu …