0
我必須逐一滾動圖像。以下是我正在使用的代碼使用CABasicAnimation滾動圖像陣列
_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"];
我可以看到圖像滾動,它正在逐一改變。 但是這些圖像無論如何都在變化。我想在離開框架/屏幕時逐個更改圖像。任何人都可以提出一些想法嗎?
感謝。這會幫助我。我已經實現了使用CALayer和CABasicAnimation。我也會嘗試這種方式,非常少LOC。再次感謝。 – Perseus 2012-05-14 04:33:49
LOC =代碼行? – 2016-04-09 13:54:19