Поделиться через


MPVolumeView.WirelessRouteActiveDidChangeNotification Свойство

Определение

Константа уведомлений для 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

Значение свойства

Константа NSString должна использоваться в качестве токена для NSNotificationCenter.

Атрибуты

Комментарии

Эту константу можно использовать с для NSNotificationCenter регистрации прослушивателя для этого уведомления. Это NSString вместо строки, так как эти значения можно использовать в качестве маркеров в некоторых собственных библиотеках, а не только для их фактического содержимого строк. Параметр 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);
}

Применяется к