在UIScrollView
我的数组中,我有 30 张图像。我尝试将其objectAtIndex
放入我的阵列中。我希望能够在 UIScrollView 停止滚动时在特定图像中显示动画。所以我在下面尝试了这段代码:
- (void) scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView{
if([images objectAtIndex:0]){
//Animation 1
} else if([images objectAtIndex:1]){
//Animation 2
} else if{
...
}
但我不能让它做我的动画。我的情况是可能的还是有其他方法?