- makeObjectsPerformSelector:withObject:
Sends the
aSelector
message to each object in the array, starting with the first object and continuing through the array to the last object.
aSelector
メッセージを配列の中の各オブジェクトに送ります、、最初のオブジェクトから始めてその配列を最後のオブジェクトまで続けます。
- enumerateObjectsUsingBlock:
Executes a given block using each object in the array, starting with the first object and continuing through the array to the last object.
与えられたブロックを配列の中の各オブジェクトを使って実行します、最初のオブジェクトから始めてその配列を最後のオブジェクトまで続けます。
- enumerateObjectsWithOptions:usingBlock:
Executes a given block using each object in the array with the specified options.
与えられたブロックを配列の中の各オブジェクトを使って指定されたオプションで実行します。
- enumerateObjectsAtIndexes:options:usingBlock:
Executes a given block using the objects in the array at the specified indexes.
与えられたブロックを、指定されたインデックスでの、配列の中のオブジェクトを使って実行します。