Instance Property
インスタンスプロパティ
currentMode
The receiver's current input mode.
レシーバのもつ現在の入力モード。
Discussion
議論
The receiver's current input mode. This method returns the current input mode only while the receiver is running; otherwise, it returns nil
.
レシーバのもつ現在の入力モード。このメソッドは、現在の入力モードをレシーバが動作中である間のみ返します;そうでなければ、それはnil
を返します。
The current mode is set by the methods that run the run loop, such as acceptInput(forMode:before:)
and run(mode:before:)
.
現在のモードは、実行ループを走らせたメソッドによって設定されます、たとえばacceptInput(forMode:before:)
およびrun(mode:before:)
など。
See Also
参照
Accessing Run Loops and Modes
実行ループおよびモードにアクセスする
func limitDate(forMode: RunLoop.Mode) -> Date?
Performs one pass through the run loop in the specified mode and returns the date at which the next timer is scheduled to fire.
指定されたモードでこの実行ループの通り抜けを一回実行します、そして次のタイマーが発火を予定される日付を返します。
Related Documentation
関連文書
func run(until: Date)
Runs the loop until the specified date, during which time it processes data from all attached input sources.
指定された日付までループを走らせます、その時間の間にそれは全ての添付された入力ソースからのデータを処理します。
func run()
Puts the receiver into a permanent loop, during which time it processes data from all attached input sources.
レシーバをある永久ループの中に置きます、その時間の間にそれは全ての添付された入力ソースからのデータを処理します。