Type Method
型メソッド
scheduledTimer(timeInterval:invocation:repeats:)
Creates a new timer and schedules it on the current run loop in the default mode.
ある新しいタイマーを作成してそれを現在の実行ループ上で省略時のモードにおいて予定します。
Declaration
宣言
class func scheduledTimer(timeInterval ti: TimeInterval
,
invocation: NSInvocation,
repeats yesOrNo: Bool
) -> Timer
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 true
, the timer will repeatedly reschedule itself until invalidated. If false
, the timer will be invalidated after it fires.
true
ならば、タイマーは、無効にされるまで繰り返しそれ自身を予定します。false
ならば、タイマーはそれが発火した後に無効にされます。
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
関連文書