UIView.ReduceMotionStatusDidChangeNotification Eigenschaft
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.
Benachrichtigungskonstante für ReduceMotionStatusDidChange
[Foundation.Advice("Use UIView.Notifications.ObserveReduceMotionStatusDidChange helper method instead.")]
[Foundation.Field("UIAccessibilityReduceMotionStatusDidChangeNotification", "UIKit")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 8, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString ReduceMotionStatusDidChangeNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 8, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.ReduceMotionStatusDidChangeNotification : Foundation.NSString
Eigenschaftswert
Die NSString-Konstante sollte als Token für NSNotificationCenter verwendet werden.
- Attribute
Hinweise
Diese Konstante kann mit dem NSNotificationCenter verwendet werden, um einen Listener für diese Benachrichtigung zu registrieren. Dies ist ein NSString anstelle einer Zeichenfolge, da diese Werte als Token in einigen nativen Bibliotheken verwendet werden können, anstatt nur für ihren tatsächlichen Zeichenfolgeninhalt verwendet zu werden. Der Parameter "notification" für den Rückruf enthält zusätzliche Informationen, die für den Benachrichtigungstyp spezifisch sind.
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
UIView.ReduceMotionStatusDidChangeNotification, (notification) => {Console.WriteLine ("Received the notification UIView", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification UIView", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (UIView.ReduceMotionStatusDidChangeNotification, Callback);
}