次の方法で共有


NSTimer.CreateScheduledTimer メソッド

定義

オーバーロード

CreateScheduledTimer(Double, NSObject, Selector, NSObject, Boolean)

指定したパラメーターを持つタイマーを作成し、既定のモードで現在の NSRunLoop で実行をスケジュールします。

CreateScheduledTimer(Double, Boolean, Action<NSTimer>)
CreateScheduledTimer(Double, Action<NSTimer>)
CreateScheduledTimer(TimeSpan, Action<NSTimer>)

CreateScheduledTimer(Double, NSObject, Selector, NSObject, Boolean)

指定したパラメーターを持つタイマーを作成し、既定のモードで現在の NSRunLoop で実行をスケジュールします。

[Foundation.Export("scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:")]
public static Foundation.NSTimer CreateScheduledTimer (double seconds, Foundation.NSObject target, ObjCRuntime.Selector selector, Foundation.NSObject userInfo, bool repeats);
static member CreateScheduledTimer : double * Foundation.NSObject * ObjCRuntime.Selector * Foundation.NSObject * bool -> Foundation.NSTimer

パラメーター

seconds
Double

タイマーの起動間隔の秒数。

target
NSObject

タイマーが起動したときに呼び出されるオブジェクト。

selector
Selector

target呼び出すメソッド。

userInfo
NSObject

タイマーのカスタム ユーザー情報。

このパラメーターは、null に設定できます。

repeats
Boolean

このタイマーを自動的に繰り返すか (true)、または最初に起動した後に無効にするか (false)。

戻り値

属性

適用対象

CreateScheduledTimer(Double, Boolean, Action<NSTimer>)

[Foundation.Export("scheduledTimerWithTimeInterval:repeats:block:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.WatchOS, 3, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 12, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSTimer CreateScheduledTimer (double interval, bool repeats, Action<Foundation.NSTimer> block);
static member CreateScheduledTimer : double * bool * Action<Foundation.NSTimer> -> Foundation.NSTimer

パラメーター

interval
Double
repeats
Boolean
block
Action<NSTimer>

戻り値

属性

適用対象

CreateScheduledTimer(Double, Action<NSTimer>)

public static Foundation.NSTimer CreateScheduledTimer (double seconds, Action<Foundation.NSTimer> action);
static member CreateScheduledTimer : double * Action<Foundation.NSTimer> -> Foundation.NSTimer

パラメーター

seconds
Double
action
Action<NSTimer>

戻り値

適用対象

CreateScheduledTimer(TimeSpan, Action<NSTimer>)

public static Foundation.NSTimer CreateScheduledTimer (TimeSpan when, Action<Foundation.NSTimer> action);
static member CreateScheduledTimer : TimeSpan * Action<Foundation.NSTimer> -> Foundation.NSTimer

パラメーター

when
TimeSpan
action
Action<NSTimer>

戻り値

適用対象