UIBarItem.VoiceOverStatusDidChangeNotification Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Constante de notificación para 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
Valor de propiedad
La constante NSString se debe usar como token para NSNotificationCenter.
- Atributos
Comentarios
Esta constante se puede usar con NSNotificationCenter para registrar un agente de escucha para esta notificación, también los desarrolladores pueden usar la notificación ObserveVoiceOverStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>) fuertemente tipada en su lugar. Se trata de un NSString en lugar de una cadena, ya que estos valores se pueden usar como tokens en algunas bibliotecas nativas en lugar de usarse exclusivamente para su contenido de cadena real. El parámetro "notification" de la devolución de llamada contiene información adicional específica del tipo de notificación.
// 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);
}