UIView.ClosedCaptioningStatusDidChangeNotification プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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>