Type Method
型メソッド
scheduledTimerWithTimeInterval:invocation:repeats:
Creates a new timer and schedules it on the current run loop in the default mode.
ある新しいタイマーを作成してそれを現在の実行ループ上で省略時のモードにおいて予定します。
Parameters
パラメータ
ti
The number of seconds between firings of the timer. If ti
is less than or equal to 0.0
, this method chooses the nonnegative value of 0.0001
seconds instead.
タイマーの発火それらの間の秒数。ti
が0.0
より少ないまたは等しいならば、このメソッドは代わりに0.0001
秒の非負の値を選びます。
invocation
The invocation to use when the timer fires. The invocation object maintains a strong reference to its arguments until the timer is invalidated.
タイマーが発火する時に使うことになる発動。発動オブジェクトは、それの引数への強い参照を、タイマーが無効にされるまで保守します。
repeats
If YES
, the timer will repeatedly reschedule itself until invalidated. If NO
, the timer will be invalidated after it fires.
YES
ならば、タイマーは、無効にされるまで繰り返しそれ自身を予定します。NO
ならば、タイマーはそれが発火した後に無効にされます。
Return Value
戻り値
A new NSTimer
object, configured according to the specified parameters.
ある新しいNSTimer
オブジェクト、それは指定されたパラメータによって構成設定されます。
Discussion
議論
After ti
seconds have elapsed, the timer fires, invoking invocation
.
ti
秒が経過した後に、タイマーは発火して、invocation
を発動します。
See Also
参照
Creating a Timer
タイマーを作成する
Related Documentation
関連文書