- removeAllObjects
Empties the array of all its elements.
配列を全てのそれの要素を出して空にします。
- removeLastObject
Removes the object with the highest-valued index in the array
配列の中で最も高い値のインデックスを持つオブジェクトを取り除きます。
- removeObject:
Removes all occurrences in the array of a given object.
与えられたオブジェクトのその配列の中の全ての出現を除去します。
- removeObject:inRange:
Removes all occurrences within a specified range in the array of a given object.
与えられたオブジェクトのその配列の中の指定された範囲内の全ての出現を除去します。
- removeObjectAtIndex:
Removes the object at
index
.
index
でのオブジェクトを除去します。
- removeObjectsAtIndexes:
Removes the objects at the specified indexes from the array.
指定されたインデックスそれらでのオブジェクトを配列から除去します。
- removeObjectIdenticalTo:
Removes all occurrences of a given object in the array.
与えられたオブジェクトの全ての出現を配列から除去します。
- removeObjectIdenticalTo:inRange:
Removes all occurrences of
anObject
within the specified range in the array.
anObject
の全ての出現を配列の中の指定された範囲内から除去します。
- removeObjectsFromIndices:numIndices:
Removes the specified number of objects from the array, beginning at the specified index.
指定されたインデックスで開始して、指定された数のオブジェクトを配列から除去します。
- removeObjectsInRange:
Removes from the array each of the objects within a given range.
与えられた範囲内のオブジェクトそれぞれを配列から除去します。