Enumeration 列挙

NSOperationQueuePriority

These constants let you prioritize the order in which operations execute. これらの定数は、それにおいてオペレーションが遂行する順番を、あなたに順位付けさせます。

Declaration 宣言

typedef enum NSOperationQueuePriority : NSInteger {
    ...
} NSOperationQueuePriority;

Overview 概要

You can use these constants to specify the relative ordering of operations that are waiting to be started in an operation queue. You should always use these constants (and not the defined value) for determining priority. あなたはこれら定数を使用して、あるオペレーションキューの中で開始されるのを待っているオペレーションそれらの相対的順序付けを指定します。あなたは、優先度を決定するために常にこれら定数を使うべきです(そして定義された値を使うべきではありません)。

Topics 話題

Constants 定数