Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to hide a CALayer after a few microseconds and I'm using CABasicAnimation to animate the hide.

At the moment I'm trying to use

[aLayer setHidden:YES];

CABasicAnimation * hideAnimation = [CABasicAnimation animationWithKeyPath:@"hidden"];
[hideAnimation setDuration:aDuration];
[hideAnimation setFromValue:[NSNumber numberWithBool:NO]];
[hideAnimation setToValue:[NSNumber numberWithBool:YES]];
[hideAnimation setBeginTime:0.09];
[hideAnimation setRemovedOnCompletion:NO];
[hideAnimation setDelegate:self];

[alayer addAnimation:hideAnimation forKey:@"hide"];

But when I run this, the layer is hidden immediately, rather than waiting for the desired beginTime.

I'm uncertain about my keyPath as "hidden" but couldn't find any other option and the documentation does state that the hidden property of a CALayer is animatable.

What's the correct way to achieve what I'm looking for?

share|improve this question

2 Answers

up vote 3 down vote accepted

Try animating the opacity property instead. Go from 1.0 to 0.0 and you should get the effect you want.

share|improve this answer
If you want it to change instantly instead of fading out, you can CAKeyframeAnimation using the kCAAnimationDiscrete value for calculationMode. You should also set the fillMode property to kCAFillModeBoth. – Kevin Ballard Jul 15 '10 at 23:02
Thanks, I'll certainly look into it, but is there a reason why what I'm doing at the moment isn't working? Just to satisfy my curiosity :) – Tom Irving Jul 15 '10 at 23:06
Using opacity hasn't changed anything unfortunately. The layer is hidden / made transparent immediately, ignoring the animation completely. My delegate method for animationDidStop is also called immediately, even if my duration is something like 100 seconds (just for testing purposes). – Tom Irving Jul 16 '10 at 16:13

From CAMediaTiming.h, it says about beginTime property:

The begin time of the object, in relation to its parent object, if applicable. Defaults to 0.

You should use CACurrentMediaTime() + desired time offset.

[hideAnimation setBeginTime:CACurrentMediaTime() + 0.09];
share|improve this answer
1  
Really useful tips, but when the animation is over, the opacity value goes back to the initial one. How can I fix this? Thanks! Bogdan. – Bogdan Jul 17 '12 at 12:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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