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

setObject(_:at:)

Appends or replaces the object at the specified index. オブジェクトを指定されたインデックスで追加または置き換えます。

Declaration 宣言

func setObject(_ obj: Any, 
            at idx: Int)

Parameters パラメータ

obj

The object to insert or append. 挿入または追加することになるオブジェクト。

idx

The index. If the index is equal to the length of the collection, then it inserts the object at that index, otherwise it replaces the object at that index with the given object. インデックス。インデックスがコレクションの長さと等しいならば、その時それはオブジェクトをそのインデックスで挿入します、そうでなければオブジェクトをそのインデックスでこの与えられたオブジェクトと置き換えます。

See Also 参照

Adding, Removing, and Reordering Entries 登録項目の追加、除去、そして再配列