func replaceObject (at: Int, with: Any)
index
with anObject
.
index
でのオブジェクトをanObject
で置き換えます。
func replaceObjects (at: IndexSet, with: [Any])
func replaceObjects (in: NSRange, withObjectsFrom : [Any])
func setArray ([Any])
Availability 有効性
Technology
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 a
.
それからa
の中のオブジェクトに対する置き換えを選ぶことになる、オブジェクトの配列。
otherRange
The range of objects be selected from other
as replacements for the objects in a
.
a
の中のオブジェクトに対する置き換えとして、other
から選択されるオブジェクトの範囲。
The lengths of a
and other
don’t have to be equal: If a
is longer than other
, the extra objects in the receiving array are removed; if other
is longer than a
, the extra objects from other
are inserted into the receiving array.
a
とother
の長さは等しい必要はありません:a
がother
より長いならば、受け手側の配列の余分なオブジェクトは取り除かれます;other
がa
より長いならば、other
からの余分なオブジェクトは受け手側の配列へと挿入されます。
func replaceObject (at: Int, with: Any)
index
with anObject
.
index
でのオブジェクトをanObject
で置き換えます。
func replaceObjects (at: IndexSet, with: [Any])
func replaceObjects (in: NSRange, withObjectsFrom : [Any])
func setArray ([Any])
func removeObject (at: Int)
index
.
index
でのオブジェクトを除去します。
func insert(Any, at: Int)