我有一个UIImageView
名为 imgView,其中有一组图像,例如,
imageArray objects: [UIImage imageNamed:@"test4.png"],
[UIImage imageNamed:@"test5.png"],
[UIImage imageNamed:@"test6.png"],
[UIImage imageNamed:@"test7.png"],
nil];
然后我在 imgView 动画中添加了数组图像,比如
imgView.animationImages = imageArray;
imgView.animationRepeatCount = 0;
imgView.animationDuration = 2.0f;
[imgView startAnimating];
在这里一切正常。一个动画周期结束后,我必须延迟 5 秒。我该怎么做,我用过
[self performSelector:@select...
但不工作,请给我任何想法。