- containsObject:
Returns a Boolean value that indicates whether a given object is present in the array.
与えられたオブジェクトがその配列に存在するかどうかを示すブール値を返します。
count
The number of objects in the array.
配列の中のオブジェクトの数。
- getObjects:
Copies all the objects contained in the array to
aBuffer
.
配列のすべてのオブジェクトをaBuffer
にコピーします。
- getObjects:range:
Copies references to objects contained in the array that fall within the specified range to
aBuffer
.
この配列に含まれるオブジェクトで、指定された範囲内に収まるものへの参照をaBuffer
にコピーします。
firstObject
The first object in the array.
この配列の最初のオブジェクト。
lastObject
The last object in the array.
この配列の最後のオブジェクト。
- objectAtIndexedSubscript:
Returns the object at the specified index.
指定されたインデックスでのオブジェクトを返します。
- objectsAtIndexes:
Returns an array containing the objects in the array at the indexes specified by a given index set.
与えられたインデックス集合によって指定されるインデックスでの、この配列のオブジェクトを含んでいる配列を返します。
- objectEnumerator
Returns an enumerator object that lets you access each object in the array.
あなたに配列の中の各オブジェクトにアクセスをさせる、列挙子オブジェクトを返します。
- reverseObjectEnumerator
Returns an enumerator object that lets you access each object in the array, in reverse order.
逆順で、あなたに配列の中の各オブジェクトにアクセスをさせる、列挙子オブジェクトを返します。