IOS:在NSMutableArray的特定位置添加一个对象

时间:2011-04-22 09:43:59

标签: objective-c xcode ios nsmutablearray

在我的项目中,我想在NSMutableArray的特定位置添加一个对象,例如:

if(index ==1) {
// I want add object at position 1 of NSMutableArray
}

if(index == 2) {
// I want add object at position 2 of NSMutableArray
}
...
if(index == 15) {
// I want add object at position 15 of NSMutableArray
}

我该怎么办?

2 个答案:

答案 0 :(得分:23)

使用[array insertObject:object atIndex:index];

答案 1 :(得分:0)

你可以使用C数组。

id objects[15];

objects[index] = yourObject;