NSTimer.CreateScheduledTimer メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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
呼び出すメソッド。
- 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
戻り値
- 属性