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

removeObjectsInRange:

Removes from the array each of the objects within a given range. 与えられた範囲内のオブジェクトそれぞれを配列から除去します。

Declaration 宣言

- (void)removeObjectsInRange:(NSRange)range;

Parameters パラメータ

aRange

The range of the objects to be removed from the array. 配列から取り除かれることになるオブジェクトの範囲。

Discussion 議論

The objects are removed using removeObjectAtIndex:. オブジェクトは、removeObjectAtIndex:を使って取り除かれます。

See Also 参照

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