NSObject.ChangeNotificationIsPriorKey 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ChangeNotificati에 대한 알림 상수
[Foundation.Field("NSKeyValueChangeNotificationIsPriorKey", "Foundation")]
public static Foundation.NSString ChangeNotificationIsPriorKey { get; }
member this.ChangeNotificationIsPriorKey : Foundation.NSString
속성 값
NSString 상수는 NSNotificationCenter에 대한 토큰으로 사용해야 합니다.
- 특성
설명
이 상수는 와 함께 NSNotificationCenter 사용하여 이 알림에 대한 수신기를 등록할 수 있습니다.
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (NSObject.ChangeNotificationIsPriorKey, (notification) => Console.WriteLine ("Received the notification NSObject", notification);
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification NSObject", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (NSObject.ChangeNotificationIsPriorKey, Callback);
}