UIApplication.Notifications.ObserveWillChangeStatusBarFrame Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
ObserveWillChangeStatusBarFrame(EventHandler<UIStatusBarFrameChangeEventArgs>) |
Notificación fuertemente tipada para la WillChangeStatusBarFrameNotification constante. |
ObserveWillChangeStatusBarFrame(NSObject, EventHandler<UIStatusBarFrameChangeEventArgs>) |
Notificación fuertemente tipada para la WillChangeStatusBarFrameNotification constante. |
ObserveWillChangeStatusBarFrame(EventHandler<UIStatusBarFrameChangeEventArgs>)
Notificación fuertemente tipada para la WillChangeStatusBarFrameNotification constante.
public static Foundation.NSObject ObserveWillChangeStatusBarFrame (EventHandler<UIKit.UIStatusBarFrameChangeEventArgs> handler);
static member ObserveWillChangeStatusBarFrame : EventHandler<UIKit.UIStatusBarFrameChangeEventArgs> -> Foundation.NSObject
Parámetros
Método para invocar cuando se publica la notificación.
Devoluciones
Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo a RemoveObservers(IEnumerable<NSObject>)
Comentarios
En el ejemplo siguiente se muestra cómo los desarrolladores pueden usar este método en su código:
//
// Lambda style
//
// listening
notification = UIApplication.Notifications.ObserveWillChangeStatusBarFrame ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("StatusBarFrame", args.StatusBarFrame);
});
// To stop listening:
notification.Dispose ();
//
//Method style
//
NSObject notification;
void Callback (object sender, UIKit.UIStatusBarFrameChangeEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("StatusBarFrame", args.StatusBarFrame);
}
void Setup ()
{
notification = UIApplication.Notifications.ObserveWillChangeStatusBarFrame (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Se aplica a
ObserveWillChangeStatusBarFrame(NSObject, EventHandler<UIStatusBarFrameChangeEventArgs>)
Notificación fuertemente tipada para la WillChangeStatusBarFrameNotification constante.
public static Foundation.NSObject ObserveWillChangeStatusBarFrame (Foundation.NSObject objectToObserve, EventHandler<UIKit.UIStatusBarFrameChangeEventArgs> handler);
static member ObserveWillChangeStatusBarFrame : Foundation.NSObject * EventHandler<UIKit.UIStatusBarFrameChangeEventArgs> -> Foundation.NSObject
Parámetros
- objectToObserve
- NSObject
Objeto que se va a observar.
Método para invocar cuando se publica la notificación.
Devoluciones
Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo a RemoveObservers(IEnumerable<NSObject>)
Comentarios
Este método se puede usar para suscribirse WillChangeStatusBarFrameNotification a las notificaciones.
// Listen to all notifications posted for any object
var token = UIApplication.Notifications.ObserveWillChangeStatusBarFrame ((notification) => {
Console.WriteLine ("Observed WillChangeStatusBarFrameNotification!");
};
// Listen to all notifications posted for a single object
var token = UIApplication.Notifications.ObserveWillChangeStatusBarFrame (objectToObserve, (notification) => {
Console.WriteLine ($"Observed WillChangeStatusBarFrameNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();