func run()
func run(mode: RunLoop.Mode, before: Date) -> Bool
func acceptInput (forMode : RunLoop.Mode, before: Date)
Availability 有効性
Technology
func run(until limitDate: Date
)
limitDate
The date up until which to run. それに至るまで動作することになる日付。
If no input sources or timers are attached to the run loop, this method exits immediately; otherwise, it runs the receiver in the NSDefault
by repeatedly invoking run(mode:
until the specified expiration date.
入力ソースまたはタイマーが実行ループに添付されないならば、このメソッドは直ちに退出します;そうでなければ、それはレシーバをNSDefault
において、指定された有効期限まで繰り返しrun(mode:
を発動することによって走らせます。
Manually removing all known input sources and timers from the run loop is not a guarantee that the run loop will exit. macOS can install and remove additional input sources as needed to process requests targeted at the receiver’s thread. Those sources could therefore prevent the run loop from exiting. 全ての既知の入力ソースとタイマーを実行ループから手動で取り除くことは、実行ループが退出する保証ではありません。macOSは、追加の入力ソースを必要に応じてインストールおよび除去して、レシーバのもつスレッドで目標とされる要請それらを処理できます。これらのソースは、従って実行ループが退出することを妨げます。
func run()
func run(mode: RunLoop.Mode, before: Date) -> Bool
func acceptInput (forMode : RunLoop.Mode, before: Date)