Bagikan melalui


NSExtensionContext.HostWillEnterForegroundNotification Properti

Definisi

Konstanta pemberitahuan untuk HostWillEnterForeground

[Foundation.Advice("Use NSExtensionContext.Notifications.ObserveHostWillEnterForeground helper method instead.")]
[Foundation.Field("NSExtensionHostWillEnterForegroundNotification", "Foundation")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 8, 2, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString HostWillEnterForegroundNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 8, 2, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.HostWillEnterForegroundNotification : Foundation.NSString

Nilai Properti

Konstanta NSString, harus digunakan sebagai token ke NSNotificationCenter.

Atribut

Keterangan

Konstanta ini dapat digunakan dengan NSNotificationCenter untuk mendaftarkan pendengar untuk pemberitahuan ini. Ini adalah NSString alih-alih string, karena nilai-nilai ini dapat digunakan sebagai token di beberapa pustaka asli alih-alih digunakan murni untuk konten string aktualnya. Parameter 'pemberitahuan' ke panggilan balik berisi informasi tambahan yang khusus untuk jenis pemberitahuan.

// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
        NSExtensionContext.HostWillEnterForegroundNotification, (notification) => {Console.WriteLine ("Received the notification NSExtensionContext", notification); }


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

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (NSExtensionContext.HostWillEnterForegroundNotification, Callback);
}

Berlaku untuk