NSRunLoop.RunUntil Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
RunUntil(NSDate) |
Startet eine Schleife, die bis zum angegebenen Datum ausgeführt wird. |
RunUntil(NSRunLoopMode, NSDate) | |
RunUntil(NSString, NSDate) |
RunUntil(NSDate)
Startet eine Schleife, die bis zum angegebenen Datum ausgeführt wird.
[Foundation.Export("runUntilDate:")]
public virtual void RunUntil (Foundation.NSDate date);
abstract member RunUntil : Foundation.NSDate -> unit
override this.RunUntil : Foundation.NSDate -> unit
Parameter
- date
- NSDate
- Attribute
Gilt für:
RunUntil(NSRunLoopMode, NSDate)
public bool RunUntil (Foundation.NSRunLoopMode runLoopMode, Foundation.NSDate limitDate);
member this.RunUntil : Foundation.NSRunLoopMode * Foundation.NSDate -> bool
Parameter
- runLoopMode
- NSRunLoopMode
- limitDate
- NSDate
Gibt zurück
Gilt für:
RunUntil(NSString, NSDate)
[Foundation.Export("runMode:beforeDate:")]
public virtual bool RunUntil (Foundation.NSString runLoopMode, Foundation.NSDate limitdate);
abstract member RunUntil : Foundation.NSString * Foundation.NSDate -> bool
override this.RunUntil : Foundation.NSString * Foundation.NSDate -> bool
Parameter
- runLoopMode
- NSString
Die Ereignisschleife, die überwacht wird. Verwenden Sie eine der in dieser Klasse definierten "RunLoopMode"-Konstanten.
- limitdate
- NSDate
Gibt zurück
- Attribute