我正在尝试 iCarousel,有一个函数可以删除视图的索引和数组的索引,
NSInteger index = carousel.currentItemIndex;
[carousel removeItemAtIndex:index animated:YES];
[imagesArray removeObjectAtIndex:index];
我正在删除它,直到剩下一项,然后如果剩下一项,我想插入它的副本。我试过这个:
insertItemAtindex:carousel.currentItemIndex
但它正在插入最后一个视图。
但我想要的是在我的视图中插入 carousel's/imagesArray 最后一个对象/索引。如何实现它,或者如何确定 NSMutableArray 留在视图中的最后一个对象?