- replaceObjectAtIndex:withObject:
Replaces the object at
index
with anObject
.
index
でのオブジェクトをanObject
で置き換えます。
- setObject:atIndexedSubscript:
Replaces the object at the index with the new object, possibly adding the object.
このインデックスでのオブジェクトを新しいオブジェクトで置き換えます、もしかするとオブジェクトを追加します。
- replaceObjectsAtIndexes:withObjects:
Replaces the objects in the receiving array at locations specified with the objects from a given array.
受け手側の配列の中の指定された位置でのオブジェクトを、ある与えられた配列からのオブジェクトで置き換えます。
- replaceObjectsInRange:withObjectsFromArray:range:
Replaces the objects in the receiving array specified by one given range with the objects in another array specified by another range.
受け手側の配列の中の一方の与えられた範囲によって指定されるオブジェクトを、別の配列の中の他方の範囲によって指定されるオブジェクトで置き換えます。
- replaceObjectsInRange:withObjectsFromArray:
Replaces the objects in the receiving array specified by a given range with all of the objects from a given array.
受け手側の配列の中のある与えられた範囲によって指定されるオブジェクトを、ある与えられた配列からのオブジェクトの全てで置き換えます。