0

我正在尝试 iCarousel,有一个函数可以删除视图的索引和数组的索引,

NSInteger index = carousel.currentItemIndex;
[carousel removeItemAtIndex:index animated:YES];
[imagesArray removeObjectAtIndex:index];

我正在删除它,直到剩下一项,然后如果剩下一项,我想插入它的副本。我试过这个:

insertItemAtindex:carousel.currentItemIndex但它正在插入最后一个视图。

但我想要的是在我的视图中插入 carousel's/imagesArray 最后一个对象/索引。如何实现它,或者如何确定 NSMutableArray 留在视图中的最后一个对象?

4

2 回答 2

9

carousel.lastObject!!!!!!!!!!!!

于 2012-06-28T14:22:02.537 回答
3

You can check for last object using -

int count = [yourArray count];
[yourArray objectAtIndex:count - 1]; //this will always return you last object
于 2012-06-28T13:58:45.297 回答