我目前有 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"];
}
但是,这只是同时淡入所有图层。我应该怎么做才能按顺序显示它们。