Compartir a través de


NSTimer.CreateScheduledTimer Método

Definición

Sobrecargas

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

Crea un temporizador con los parámetros especificados y lo programa para su ejecución en el NSRunLoop actual en el modo predeterminado.

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

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

Crea un temporizador con los parámetros especificados y lo programa para su ejecución en el NSRunLoop actual en el modo predeterminado.

[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

Parámetros

seconds
Double

Número de segundos entre los disparos del temporizador.

target
NSObject

Objeto que se invocará cuando se active el temporizador.

selector
Selector

Método que se va a invocar en target.

userInfo
NSObject

Información de usuario personalizada para el temporizador.

Este parámetro puede ser null.

repeats
Boolean

Si este temporizador debe repetirse automáticamente (true) o se invalidará después de activar la primera vez (false).

Devoluciones

Atributos

Se aplica a

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

Parámetros

interval
Double
repeats
Boolean
block
Action<NSTimer>

Devoluciones

Atributos

Se aplica a

CreateScheduledTimer(Double, Action<NSTimer>)

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

Parámetros

seconds
Double
action
Action<NSTimer>

Devoluciones

Se aplica a

CreateScheduledTimer(TimeSpan, Action<NSTimer>)

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

Parámetros

when
TimeSpan
action
Action<NSTimer>

Devoluciones

Se aplica a