次の方法で共有


MPVolumeView.WirelessRoutesAvailableDidChangeNotification プロパティ

定義

WirelessRoutesAvailableDidChange の通知定数

[Foundation.Advice("Use MPVolumeView.Notifications.ObserveWirelessRoutesAvailableDidChange helper method instead.")]
[Foundation.Field("MPVolumeViewWirelessRoutesAvailableDidChangeNotification", "MediaPlayer")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString WirelessRoutesAvailableDidChangeNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.WirelessRoutesAvailableDidChangeNotification : Foundation.NSString

プロパティ値

NSString 定数は、NSNotificationCenter のトークンとして使用する必要があります。

属性

注釈

この定数は、 と共 NSNotificationCenter に使用して、この通知のリスナーを登録できます。 これらの値は、実際の文字列コンテンツに対して純粋に使用されるのではなく、一部のネイティブ ライブラリでトークンとして使用できるため、これは文字列ではなく NSString です。 コールバックの 'notification' パラメーターには、通知の種類に固有の追加情報が含まれています。

// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
        MPVolumeView.WirelessRoutesAvailableDidChangeNotification, (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.WirelessRoutesAvailableDidChangeNotification, Callback);
}

適用対象