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

setObject:atIndexedSubscript:

Replaces the given object at the specified index of the mutable ordered set. 可変順序集合のこの指定されたインデックスで、この与えられたオブジェクトを置き換えます。

Declaration 宣言

- (void)setObject:(ObjectType)obj 
atIndexedSubscript:(NSUInteger)idx;

Parameters パラメータ

object

The object to replace the set’s content. 集合のもつ内容を置き換えることになるオブジェクト。

idx

The index in the mutable ordered set at which to insert object. This value must not be greater than the count of elements in the array. それでobjectを挿入することになるこの可変の順序集合の中のインデックス。この値は、配列の中の要素の数より多くてはいけません。

Discussion 議論

If the index is already occupied, the objects at index and beyond are shifted by adding 1 to their indices to make room. インデックスが既に占有されるならば、インデックスでのそしてその先のオブジェクトは、1をそれらのインデックスに加えることによってずらされて場所を空けます。

This method is identical to insertObject:atIndex:. このメソッドはinsertObject:atIndex:と同一です。

See Also 参照

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