다음을 통해 공유


UIBarItem.Notifications.ObserveDarkerSystemColorsStatusDidChange 메서드

정의

오버로드

ObserveDarkerSystemColorsStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

상수에 대한 강력한 형식의 알림입니다 DarkerSystemColorsStatusDidChangeNotification .

ObserveDarkerSystemColorsStatusDidChange(EventHandler<NSNotificationEventArgs>)

상수에 대한 강력한 형식의 알림입니다 DarkerSystemColorsStatusDidChangeNotification .

ObserveDarkerSystemColorsStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

상수에 대한 강력한 형식의 알림입니다 DarkerSystemColorsStatusDidChangeNotification .

public static Foundation.NSObject ObserveDarkerSystemColorsStatusDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDarkerSystemColorsStatusDidChange : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

매개 변수

objectToObserve
NSObject

관찰할 개체입니다.

handler
EventHandler<NSNotificationEventArgs>

알림이 게시될 때 호출할 메서드입니다.

반환

알림을 삭제하거나 에 전달하여 알림 수신을 중지하는 데 사용할 수 있는 토큰 개체 RemoveObservers(IEnumerable<NSObject>)

설명

이 메서드를 사용하여 알림을 구독 DarkerSystemColorsStatusDidChangeNotification 할 수 있습니다.

// Listen to all notifications posted for any object
var token = UIBarItem.Notifications.ObserveDarkerSystemColorsStatusDidChange ((notification) => {
	Console.WriteLine ("Observed DarkerSystemColorsStatusDidChangeNotification!");
};

// Listen to all notifications posted for a single object
var token = UIBarItem.Notifications.ObserveDarkerSystemColorsStatusDidChange (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed DarkerSystemColorsStatusDidChangeNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

적용 대상

ObserveDarkerSystemColorsStatusDidChange(EventHandler<NSNotificationEventArgs>)

상수에 대한 강력한 형식의 알림입니다 DarkerSystemColorsStatusDidChangeNotification .

public static Foundation.NSObject ObserveDarkerSystemColorsStatusDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDarkerSystemColorsStatusDidChange : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

매개 변수

handler
EventHandler<NSNotificationEventArgs>

알림이 게시될 때 호출할 메서드입니다.

반환

알림을 삭제하거나 에 전달하여 알림 수신을 중지하는 데 사용할 수 있는 토큰 개체 RemoveObservers(IEnumerable<NSObject>)

설명

이 메서드를 사용하여 알림을 구독 DarkerSystemColorsStatusDidChangeNotification 할 수 있습니다.

// Listen to all notifications posted for any object
var token = UIBarItem.Notifications.ObserveDarkerSystemColorsStatusDidChange ((notification) => {
	Console.WriteLine ("Observed DarkerSystemColorsStatusDidChangeNotification!");
};

// Listen to all notifications posted for a single object
var token = UIBarItem.Notifications.ObserveDarkerSystemColorsStatusDidChange (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed DarkerSystemColorsStatusDidChangeNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

적용 대상