UIView.SwitchControlStatusDidChangeNotification Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Konstanta pemberitahuan untuk SwitchControlStatusDidChange
[Foundation.Advice("Use UIView.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
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 (
UIView.SwitchControlStatusDidChangeNotification, (notification) => {Console.WriteLine ("Received the notification UIView", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification UIView", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (UIView.SwitchControlStatusDidChangeNotification, Callback);
}