Partager via


MPVolumeView.WirelessRouteActiveDidChangeNotification Propriété

Définition

Constante de notification pour WirelessRouteActiveDidChange

[Foundation.Advice("Use MPVolumeView.Notifications.ObserveWirelessRouteActiveDidChange helper method instead.")]
[Foundation.Field("MPVolumeViewWirelessRouteActiveDidChangeNotification", "MediaPlayer")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString WirelessRouteActiveDidChangeNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.WirelessRouteActiveDidChangeNotification : 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 (
        MPVolumeView.WirelessRouteActiveDidChangeNotification, (notification) => {Console.WriteLine ("Received the notification MPVolumeView", notification); }


// Method style
void Callback (NSNotification notification)
{
    Console.WriteLine ("Received a notification MPVolumeView", notification);
}

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (MPVolumeView.WirelessRouteActiveDidChangeNotification, Callback);
}

S’applique à