NSMutableArray最后一个Object

时间:2012-06-28 13:42:11

标签: ios nsmutablearray icarousel

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

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

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

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

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

2 个答案:

答案 0 :(得分:9)

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

答案 1 :(得分:3)

您可以使用 -

检查最后一个对象
int count = [yourArray count];
[yourArray objectAtIndex:count - 1]; //this will always return you last object