Поделиться через


WKInterfaceObject.ClosedCaptioningStatusDidChangeNotification Свойство

Определение

Константа уведомления для ClosedCaptioningStatusDidChange

[Foundation.Advice("Use WKInterfaceObject.Notifications.ObserveClosedCaptioningStatusDidChange helper method instead.")]
[Foundation.Field("UIAccessibilityClosedCaptioningStatusDidChangeNotification", "WatchKit")]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString ClosedCaptioningStatusDidChangeNotification { [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.ClosedCaptioningStatusDidChangeNotification : Foundation.NSString

Значение свойства

Константа NSString должна использоваться в качестве маркера для NSNotificationCenter.

Атрибуты

Комментарии

Эту константу можно использовать с для NSNotificationCenter регистрации прослушивателя для этого уведомления. Это NSString вместо строки, так как эти значения могут использоваться в качестве маркеров в некоторых собственных библиотеках, а не только для их фактического содержимого строки. Параметр notification для обратного вызова содержит дополнительные сведения, относящиеся к типу уведомления.

// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
        WKInterfaceObject.ClosedCaptioningStatusDidChangeNotification, (notification) => {Console.WriteLine ("Received the notification WKInterfaceObject", notification); }


// Method style
void Callback (NSNotification notification)
{
    Console.WriteLine ("Received a notification WKInterfaceObject", notification);
}

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (WKInterfaceObject.ClosedCaptioningStatusDidChangeNotification, Callback);
}

Применяется к