私は現在3つの画像を持っています.私の目標は次々とレイヤーをフェードインすることです.
私がしていることは
for (UIImageView *imageView in arr) {
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"opacity"];
animation.fromValue = [NSNumber numberWithFloat:0.0];
animation.toValue = [NSNumber numberWithFloat:1.0];
animation.duration = 4;
animation.removedOnCompletion = NO;
animation.fillMode = kCAFillModeBoth;
[imageView.layer addAnimation:animation forKey:@"opacityAnimation"];
}
ただし、これはレイヤー全体を同時にフェードインするだけです。それらを順番に表示するにはどうすればよいですか。