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

replaceObjectsInRange:withObjectsFromArray:

Replaces the objects in the receiving array specified by a given range with all of the objects from a given array. 受け手側の配列の中のある与えられた範囲によって指定されるオブジェクトを、ある与えられた配列からのオブジェクトの全てで置き換えます。

Declaration 宣言

- (void)replaceObjectsInRange:(NSRange)range 
         withObjectsFromArray:(NSArray<ObjectType> *)otherArray;

Parameters パラメータ

aRange

The range of objects to be replaced in (or removed from) the receiving array. 受け手側の配列において置き換えられる(またはそれから除去される)ことになるオブジェクトの範囲。

otherArray

The array of objects from which to select replacements for the objects in aRange. それからaRangeの中のオブジェクトに対する置き換えを選ぶことになる、オブジェクトの配列。

Discussion 議論

If otherArray has fewer objects than are specified by aRange, the extra objects in the receiving array are removed. If otherArray has more objects than are specified by aRange, the extra objects from otherArray are inserted into the receiving array. otherArrayaRangeよって指定されるより少ないオブジェクトを持つならば、受け手側の配列の中の余分なオブジェクトは取り除かれます。otherArrayaRangeによって指定されるより多いオブジェクトを持つならば、otherArrayからの余分なオブジェクトは受け手側の配列へと挿入されます。

See Also 参照

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

Related Documentation 関連文書