UIBarItem.HearingDevicePairedEarDidChangeNotification Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Costante di notifica per HearingDevicePairedEarDidChange
[Foundation.Advice("Use UIBarItem.Notifications.ObserveHearingDevicePairedEarDidChange helper method instead.")]
[Foundation.Field("UIAccessibilityHearingDevicePairedEarDidChangeNotification", "UIKit")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString HearingDevicePairedEarDidChangeNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.HearingDevicePairedEarDidChangeNotification : Foundation.NSString
Valore della proprietà
La costante NSString deve essere usata come token per NSNotificationCenter.
- Attributi
Commenti
Questa costante può essere usata con per NSNotificationCenter registrare un listener per questa notifica. Si tratta di una stringa NSString anziché di una stringa, perché questi valori possono essere usati come token in alcune librerie native anziché essere usati esclusivamente per il relativo contenuto stringa effettivo. Il parametro 'notification' per il callback contiene informazioni aggiuntive specifiche del tipo di notifica.
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
UIBarItem.HearingDevicePairedEarDidChangeNotification, (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.HearingDevicePairedEarDidChangeNotification, Callback);
}