UIApplication.Notifications.ObserveContentSizeCategoryChanged Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
ObserveContentSizeCategoryChanged(EventHandler<UIContentSizeCategoryChangedEventArgs>) |
Notificação fortemente tipada para a ContentSizeCategoryChangedNotification constante. |
ObserveContentSizeCategoryChanged(NSObject, EventHandler<UIContentSizeCategoryChangedEventArgs>) |
Notificação fortemente tipada para a ContentSizeCategoryChangedNotification constante. |
ObserveContentSizeCategoryChanged(EventHandler<UIContentSizeCategoryChangedEventArgs>)
Notificação fortemente tipada para a ContentSizeCategoryChangedNotification constante.
public static Foundation.NSObject ObserveContentSizeCategoryChanged (EventHandler<UIKit.UIContentSizeCategoryChangedEventArgs> handler);
static member ObserveContentSizeCategoryChanged : EventHandler<UIKit.UIContentSizeCategoryChangedEventArgs> -> Foundation.NSObject
Parâmetros
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
O exemplo a seguir mostra como os desenvolvedores podem usar esse método em seu código:
//
// Lambda style
//
// listening
notification = UIApplication.Notifications.ObserveContentSizeCategoryChanged ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("WeakNewValue", args.WeakNewValue);
});
// To stop listening:
notification.Dispose ();
//
//Method style
//
NSObject notification;
void Callback (object sender, UIKit.UIContentSizeCategoryChangedEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("WeakNewValue", args.WeakNewValue);
}
void Setup ()
{
notification = UIApplication.Notifications.ObserveContentSizeCategoryChanged (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Aplica-se a
ObserveContentSizeCategoryChanged(NSObject, EventHandler<UIContentSizeCategoryChangedEventArgs>)
Notificação fortemente tipada para a ContentSizeCategoryChangedNotification constante.
public static Foundation.NSObject ObserveContentSizeCategoryChanged (Foundation.NSObject objectToObserve, EventHandler<UIKit.UIContentSizeCategoryChangedEventArgs> handler);
static member ObserveContentSizeCategoryChanged : Foundation.NSObject * EventHandler<UIKit.UIContentSizeCategoryChangedEventArgs> -> Foundation.NSObject
Parâmetros
- objectToObserve
- NSObject
O objeto a ser observado.
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 ContentSizeCategoryChangedNotification notificações.
// Listen to all notifications posted for any object
var token = UIApplication.Notifications.ObserveContentSizeCategoryChanged ((notification) => {
Console.WriteLine ("Observed ContentSizeCategoryChangedNotification!");
};
// Listen to all notifications posted for a single object
var token = UIApplication.Notifications.ObserveContentSizeCategoryChanged (objectToObserve, (notification) => {
Console.WriteLine ($"Observed ContentSizeCategoryChangedNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();