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

removeObjectAtIndex:

Removes the object at index . indexでのオブジェクトを除去します。

Declaration 宣言

- (void)removeObjectAtIndex:(NSUInteger)index;

Parameters パラメータ

index

The index from which to remove the object in the array. The value must not exceed the bounds of the array. それからこの配列の中のオブジェクトを取り除くことになるインデックス。値は、配列の境界を越えてはなりません。

Discussion 議論

To fill the gap, all elements beyond index are moved by subtracting 1 from their index. 隙間を埋めるために、indexを越える全ての要素はそれらのインデックスから1引かれることによって移動されます。

See Also 参照

Removing Objects オブジェクトを取り除く

Related Documentation 関連文書