The object with which to replace the object at index index in the array. This value must not be nil.
このオブジェクトで、配列の中のindexでのオブジェクトを置き換えることになります。この値は、nilではいけません。
index
The index of the object to be replaced. This value must not exceed the bounds of the array.
置き換えられることになるオブジェクトのインデックス。この値は、配列の境界を越えてはなりません。
If index is beyond the end of the array (that is, if index is greater than or equal to the value returned by count), an NSRangeException is raised.indexが配列の終わりを越えるならば(すなわち、indexがcountによって返される値と同等かそれより大きいならば)、NSRangeExceptionが引き起こされます。
You shouldn’t need to call this method directly. Instead, this method is called when setting an object by index using subscripting.
あなたは、このメソッドを直接呼び出す必要はないはずです。その代わりに、このメソッドはあるオブジェクトがインデックスによる添え字を使って設定される時に呼び出されます。
Replaces the objects in the receiving array at locations specified with the objects from a given array.
受け手側の配列の中の指定された位置でのオブジェクトを、ある与えられた配列からのオブジェクトで置き換えます。
Replaces the objects in the receiving array specified by one given range with the objects in another array specified by another range.
受け手側の配列の中の一方の与えられた範囲によって指定されるオブジェクトを、別の配列の中の他方の範囲によって指定されるオブジェクトで置き換えます。
Replaces the objects in the receiving array specified by a given range with all of the objects from a given array.
受け手側の配列の中のある与えられた範囲によって指定されるオブジェクトを、ある与えられた配列からのオブジェクトの全てで置き換えます。