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


UIScreen.CapturedDidChangeNotification Свойство

Определение

Константы уведомлений для CapturedDidChange

[Foundation.Advice("Use UIScreen.Notifications.ObserveCapturedDidChange helper method instead.")]
[Foundation.Field("UIScreenCapturedDidChangeNotification", "UIKit")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString CapturedDidChangeNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.CapturedDidChangeNotification : Foundation.NSString

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

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

Атрибуты

Комментарии

Эту константу NSNotificationCenter можно использовать вместе с , чтобы зарегистрировать прослушиватель для этого уведомления. Кроме того, разработчики могут использовать строго типизированное уведомление ObserveCapturedDidChange . Это NSString вместо строки, так как эти значения можно использовать в качестве маркеров в некоторых собственных библиотеках, а не только для их фактического содержимого строк. Параметр notification для обратного вызова содержит дополнительные сведения, относящиеся к типу уведомления.

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


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

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (UIScreen.CapturedDidChangeNotification, Callback);
}

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