NSTimer.CreateTimer Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
CreateTimer(Double, Action<NSTimer>) | |
CreateTimer(TimeSpan, Action<NSTimer>) | |
CreateTimer(Double, Boolean, Action<NSTimer>) | |
CreateTimer(Double, NSObject, Selector, NSObject, Boolean) |
Crée un objet minuteur qui peut être ajouté ultérieurement à un NSRunLoop. |
CreateTimer(Double, Action<NSTimer>)
CreateTimer(TimeSpan, Action<NSTimer>)
CreateTimer(Double, Boolean, Action<NSTimer>)
[Foundation.Export("timerWithTimeInterval: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 CreateTimer (double interval, bool repeats, Action<Foundation.NSTimer> block);
static member CreateTimer : double * bool * Action<Foundation.NSTimer> -> Foundation.NSTimer
Paramètres
- interval
- Double
- repeats
- Boolean
Retours
- Attributs
S’applique à
CreateTimer(Double, NSObject, Selector, NSObject, Boolean)
Crée un objet minuteur qui peut être ajouté ultérieurement à un NSRunLoop.
[Foundation.Export("timerWithTimeInterval:target:selector:userInfo:repeats:")]
public static Foundation.NSTimer CreateTimer (double seconds, Foundation.NSObject target, ObjCRuntime.Selector selector, Foundation.NSObject userInfo, bool repeats);
static member CreateTimer : double * Foundation.NSObject * ObjCRuntime.Selector * Foundation.NSObject * bool -> Foundation.NSTimer
Paramètres
- seconds
- Double
Nombre de secondes entre les tirs du minuteur.
- target
- NSObject
Objet qui sera appelé lorsque le minuteur se déclenche.
- selector
- Selector
Méthode qui sera appelée sur target
.
- repeats
- Boolean
Indique si ce minuteur doit se répéter automatiquement (true) ou sera invalidé après le déclenchement de la première fois (false).
Retours
- Attributs