UIBarItem.Notifications.ObserveReduceMotionStatusDidChange Method

Definition

Overloads

ObserveReduceMotionStatusDidChange(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the ReduceMotionStatusDidChangeNotification constant.

ObserveReduceMotionStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the ReduceMotionStatusDidChangeNotification constant.

ObserveReduceMotionStatusDidChange(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the ReduceMotionStatusDidChangeNotification constant.

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

Parameters

handler
EventHandler<NSNotificationEventArgs>

Method to invoke when the notification is posted.

Returns

Token object that can be used to stop receiving notifications by either disposing it or passing it to RemoveObservers(IEnumerable<NSObject>)

Remarks

This method can be used to subscribe for ReduceMotionStatusDidChangeNotification notifications.

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

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

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

Applies to

ObserveReduceMotionStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the ReduceMotionStatusDidChangeNotification constant.

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

Parameters

objectToObserve
NSObject

The object to observe.

handler
EventHandler<NSNotificationEventArgs>

Method to invoke when the notification is posted.

Returns

Token object that can be used to stop receiving notifications by either disposing it or passing it to RemoveObservers(IEnumerable<NSObject>)

Remarks

This method can be used to subscribe for ReduceMotionStatusDidChangeNotification notifications.

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

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

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

Applies to