Instance Method インスタンスメソッド

replaceObjectAtIndex:withObject:

Replaces the object at index with anObject. indexでのオブジェクトをanObjectで置き換えます。

Declaration 宣言

- (void)replaceObjectAtIndex:(NSUInteger)index 
                  withObject:(ObjectType)anObject;

Parameters パラメータ

index

The index of the object to be replaced. This value must not exceed the bounds of the array. 置き換えられることになるオブジェクトのインデックス。この値は、配列の境界を越えてはなりません。

anObject

The object with which to replace the object at index index in the array. This value must not be nil. このオブジェクトで、配列の中のindexでのオブジェクトを置き換えることになります。この値は、nilではいけません。

See Also 参照

Replacing Objects オブジェクトを置き換える

Related Documentation 関連文書