如何使用索引来使用NSMutableArray?
我想索引索引,例如9,所有高达9,0 - 8的东西都需要放在数组的末尾,这样阵列看起来就像这样。
9,10,11,12,13,0,1,2,3,4,5,6,7,8
在定位方面。
如何在目标C中完成?
由于
答案 0 :(得分:1)
如果你只想在索引 0-8 移动对象到数组的末尾,这很容易:
NSRange r = NSMakeRange(0,9); // the range of items to push to the end
// extract the first 9 items in the array to keep them around
NSArray* first9 = [yourArray subarrayWithRange:r];
// remove them from the original NSMutableArray
[yourArray removeObjectsInRange:r];
// add them back to the end
[yourArray addObjectsFromArray:first9];
答案 1 :(得分:0)
NSMutableArray实现NSArray所做的所有排序函数。