UIBarItem.VoiceOverStatusDidChangeNotification Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Константы уведомлений для VoiceOverStatusDidChange
[Foundation.Advice("Use UIBarItem.Notifications.ObserveVoiceOverStatusDidChange helper method instead.")]
[Foundation.Field("UIAccessibilityVoiceOverStatusDidChangeNotification", "UIKit")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString VoiceOverStatusDidChangeNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.VoiceOverStatusDidChangeNotification : Foundation.NSString
Значение свойства
Константа NSString должна использоваться в качестве маркера для NSNotificationCenter.
- Атрибуты
Комментарии
Эту константу можно использовать вместе с для NSNotificationCenter регистрации прослушивателя для этого уведомления, а также разработчики могут использовать строго типизированное уведомление ObserveVoiceOverStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>) . Это NSString вместо строки, так как эти значения могут использоваться в качестве маркеров в некоторых собственных библиотеках, а не только для их фактического содержимого строки. Параметр notification для обратного вызова содержит дополнительные сведения, относящиеся к типу уведомления.
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
UIBarItem.VoiceOverStatusDidChangeNotification, (notification) => {Console.WriteLine ("Received the notification UIBarItem", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification UIBarItem", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (UIBarItem.VoiceOverStatusDidChangeNotification, Callback);
}