mainQueue
Returns the operation queue associated with the main thread.
メインスレッドと結びつけられたオペレーションキューを返します。
Availability 有効性
Technology
@property(class, readonly, strong, nullable) NSOperationQueue
*currentQueue;
The operation queue that started the operation or nil
if the queue could not be determined.
オペレーションを開始したオペレーションキューまたは、キューが決定されることができなかったならばnil
。
You can use this method from within a running operation object to get a reference to the operation queue that started it. Calling this method from outside the context of a running operation typically results in nil
being returned.
あなたは、このメソッドを動作中のオペレーションオブジェクト内から使用して、それを開始したオペレーションキューに対する参照を得ることができます。このメソッドを実行中オペレーションの環境の外側から呼び出すことは、概してnil
が返されるという結果になります。
mainQueue