Instance Property インスタンスプロパティ

runLoopModes

The modes governing the types of input handled during a cycle of the run loop. 実行ループの一周期の間に取り扱われる入力の型を規定するモード。

Declaration 宣言

@property(copy) NSArray<NSRunLoopMode> *runLoopModes;

Discussion 議論

An array of string constants specifying the current run-loop modes. 現在の実行ループモードを指定している文字列定数それらからなるある配列。

By default, the sole run-loop mode is NSDefaultRunLoopMode (which excludes data from NSConnection objects). Some examples of other uses are to limit the input to data received during a mouse-tracking session by setting the mode to NSEventTrackingRunLoopMode, or limit it to data received from a modal panel with NSModalPanelRunLoopMode. 初期状態では、唯一の実行ループモードはNSDefaultRunLoopModeです(それはNSConnectionオブジェクトからのデータを除外します)。他の利用のいくつかの例は、モードをNSEventTrackingRunLoopModeに設定することによって入力をマウス追跡セッションの間に受け取ったデータに制限する、またはそれをモーダルパネルから受け取ったデータにNSModalPanelRunLoopModeで制限するなどになります。

See Also 参照

Related Documentation 関連文書