画像を1つずつスクロールする必要があります。以下は私が使用しているコードです
_imageView は UIImageView で、imagesArray はオブジェクトの配列を持つ NSArray です。
_imageView.animationImages=imagesArray;
_imageView.animationDuration=10;
[_imageView startAnimating];
CABasicAnimation *scrollText;
scrollText=[CABasicAnimation animationWithKeyPath:@"position.x"];
scrollText.duration = 10.0;
scrollText.speed= 3;
scrollText.repeatCount = 0;
scrollText.autoreverses = NO;
scrollText.fromValue = [NSNumber numberWithFloat:500];
scrollText.toValue = [NSNumber numberWithFloat:-200.0];
[[_imageView layer] addAnimation:scrollText forKey:@"scrollTextKey"];
画像がスクロールしていて、1 つずつ変化していることがわかります。しかし、これらのイメージは関係なく変化しています。フレーム/スクリーンを離れるときに画像を1つずつ変更したい。誰でもいくつかのアイデアを提案できますか?