NSTimer.CreateScheduledTimer Método
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
CreateScheduledTimer(Double, NSObject, Selector, NSObject, Boolean) |
Cria um temporizador com os parâmetros especificados e o agenda para execução no NSRunLoop atual no modo padrão. |
CreateScheduledTimer(Double, Boolean, Action<NSTimer>) | |
CreateScheduledTimer(Double, Action<NSTimer>) | |
CreateScheduledTimer(TimeSpan, Action<NSTimer>) |
Cria um temporizador com os parâmetros especificados e o agenda para execução no NSRunLoop atual no modo padrão.
[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
O número de segundos entre disparos do temporizador.
- target
- NSObject
Um objeto que será invocado quando o temporizador for acionado.
- selector
- Selector
O método a ser invocado em target
.
- userInfo
- NSObject
Informações personalizadas do usuário para o temporizador.
Esse parâmetro pode ser null
.
- repeats
- Boolean
Se esse temporizador deve ser repetido automaticamente (true) ou se será invalidado depois de disparar pela primeira vez (false).
Retornos
- Atributos
Aplica-se a
[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
Retornos
- Atributos