I have a CALayer
in an AVMutableComposition
that is faded in, should stay on screen for a while and then disappear. The problem is, it should disappear without an animation, but CABasicAnimation
has a minimum duration of 0.25 seconds.
How would can I achieve to set the opacity of the layer after a given time without animating it?
[self performSelector:<your selector> withObject:<object if you want to pass anything> afterDelay:<time delay>];
– Gonocyte