Compartilhar via


UIBarItem.Notifications.ObserveShakeToUndoDidChange Método

Definição

Sobrecargas

ObserveShakeToUndoDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a ShakeToUndoDidChangeNotification constante.

ObserveShakeToUndoDidChange(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a ShakeToUndoDidChangeNotification constante.

ObserveShakeToUndoDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a ShakeToUndoDidChangeNotification constante.

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

Parâmetros

objectToObserve
NSObject

O objeto a ser observado.

handler
EventHandler<NSNotificationEventArgs>

Método a ser invocado quando a notificação é postada.

Retornos

Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)

Comentários

Esse método pode ser usado para assinar ShakeToUndoDidChangeNotification notificações.

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

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

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

Aplica-se a

ObserveShakeToUndoDidChange(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a ShakeToUndoDidChangeNotification constante.

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

Parâmetros

handler
EventHandler<NSNotificationEventArgs>

Método a ser invocado quando a notificação é postada.

Retornos

Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)

Comentários

Esse método pode ser usado para assinar ShakeToUndoDidChangeNotification notificações.

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

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

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

Aplica-se a