UIImage.SwitchControlStatusDidChangeNotification Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Constante de notification pour SwitchControlStatusDidChange
[Foundation.Advice("Use UIImage.Notifications.ObserveSwitchControlStatusDidChange helper method instead.")]
[Foundation.Field("UIAccessibilitySwitchControlStatusDidChangeNotification", "UIKit")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 8, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString SwitchControlStatusDidChangeNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 8, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.SwitchControlStatusDidChangeNotification : Foundation.NSString
Valeur de propriété
La constante NSString doit être utilisée comme jeton pour NSNotificationCenter.
- Attributs
Remarques
Cette constante peut être utilisée avec pour NSNotificationCenter inscrire un écouteur pour cette notification. Il s’agit d’un NSString au lieu d’une chaîne, car ces valeurs peuvent être utilisées comme jetons dans certaines bibliothèques natives au lieu d’être utilisées uniquement pour leur contenu de chaîne réel. Le paramètre « notification » du rappel contient des informations supplémentaires spécifiques au type de notification.
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
UIImage.SwitchControlStatusDidChangeNotification, (notification) => {Console.WriteLine ("Received the notification UIImage", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification UIImage", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (UIImage.SwitchControlStatusDidChangeNotification, Callback);
}
Cela peut être utilisé à partir d’un thread d’arrière-plan.