I need to fade in my CALayers. Here's my code:

    for(int i = 0; i < viewArray.count; i++)
    {
        CABasicAnimation *fadeIn = [CABasicAnimation animationWithKeyPath:@"opacity"];
        fadeIn.duration = 0.3;
        fadeIn.beginTime = i;
        fadeIn.fromValue = [NSNumber numberWithFloat:0.0];
        fadeIn.toValue = [NSNumber numberWithFloat:0.8];
        fadeIn.removedOnCompletion = NO;
        fadeIn.delegate = self;
        [((CALayer*)[viewArray objectAtIndex:i]) addAnimation:fadeIn forKey:nil];
    }

However, only the first two objects properly fades, all other objects do not fade at all. I've noticed that when I put a breakpoint at animationDidStop, most of the animations that have not started already stopped (even the animations that are supposed to start 60 seconds in are stopped within the first couple of seconds). I'm not exactly sure what's going on. I can see it properly when I manually set each CALayer's opacity to 1 but not when animating.

link|improve this question

How many objects are you animating? – Matthew Gillingham Sep 16 '11 at 8:27
feedback

1 Answer

up vote 0 down vote accepted

You are starting all of the animations at the same time, because the call to addAnimation:forKey: does not synchronously wait until the animation is complete.

I have checked it and it seems you have to set the beginTime in a following way

fadeIn.beginTime = CACurrentMediaTime() + i;
link|improve this answer
WORKS! Though I'm getting some weird animations but at least it does delay it. THANKS! – Ninja Sep 16 '11 at 8:25
Are you trying to perform the animations all at once? Or one after the other? – Matthew Gillingham Sep 16 '11 at 8:29
neither. just a small delay between each starting fade. – Ninja Sep 16 '11 at 8:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.