The timer to register with the receiver. レシーバに登録することになるタイマー。
add(_:forMode:)
Availability 有効性
- iOS 2.0+
- iPadOS 2.0+
- macOS 10.0+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
Parameters パラメータ
aTimer
mode
The mode in which to add
a
. それにおいてTimer a
を加えることになるモード。 You may specify a custom mode or use one of the modes listed inTimer Run Loop Modes
.
Discussion 議論
You can add a timer to multiple input modes. While running in the designated mode, the receiver causes the timer to fire on or after its scheduled fire date. Upon firing, the timer invokes its associated handler routine, which is a selector on a designated object. あなたはタイマーを複数の入力モードに加えることができます。指定されたモードで動作している間、レシーバはタイマーにそれの予定された発火日付でまたはその後に発火させます。発火では、タイマーはそれの結びつけられたハンドラルーチンを発動します、それは指定されたオブジェクト上のあるセレクタです。
The receiver retains a
. To remove a timer from all run loop modes on which it is installed, send an invalidate()
message to the timer.
レシーバはa
を保有します。タイマーをそれがインストールされた全ての実行ループモードから取り除くには、invalidate()
メッセージをタイマーに送ってください。