UIView.ClosedCaptioningStatusDidChangeNotification Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Константа уведомлений для ClosedCaptioningStatusDidChange
[Foundation.Advice("Use UIView.Notifications.ObserveClosedCaptioningStatusDidChange helper method instead.")]
[Foundation.Field("UIAccessibilityClosedCaptioningStatusDidChangeNotification", "UIKit")]
[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 (
UIView.ClosedCaptioningStatusDidChangeNotification, (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.ClosedCaptioningStatusDidChangeNotification, Callback);
}
Применяется к
См. также раздел
- AnnouncementNotification
- AnnouncementDidFinishNotification
- ClosedCaptioningStatusDidChangeNotification
- GuidedAccessStatusDidChangeNotification
- <xref:UIKit.UIView.InvertColorStatusDidChangeNotification>
- LayoutChangedNotification
- MonoAudioStatusDidChangeNotification
- PageScrolledNotification
- ScreenChangedNotification
- <xref:UIKit.UIView.VoiceOverStatusChangedNotification>