UIApplication.Notifications.ObserveWillChangeStatusBarOrientation Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
ObserveWillChangeStatusBarOrientation(EventHandler<UIStatusBarOrientationChangeEventArgs>) |
Notifica fortemente tipizzata per la WillChangeStatusBarOrientationNotification costante. |
ObserveWillChangeStatusBarOrientation(NSObject, EventHandler<UIStatusBarOrientationChangeEventArgs>) |
Notifica fortemente tipizzata per la WillChangeStatusBarOrientationNotification costante. |
ObserveWillChangeStatusBarOrientation(EventHandler<UIStatusBarOrientationChangeEventArgs>)
Notifica fortemente tipizzata per la WillChangeStatusBarOrientationNotification costante.
public static Foundation.NSObject ObserveWillChangeStatusBarOrientation (EventHandler<UIKit.UIStatusBarOrientationChangeEventArgs> handler);
static member ObserveWillChangeStatusBarOrientation : EventHandler<UIKit.UIStatusBarOrientationChangeEventArgs> -> Foundation.NSObject
Parametri
Metodo da richiamare quando viene inviata la notifica.
Restituisce
Oggetto token che può essere usato per interrompere la ricezione delle notifiche eliminandolo o passandolo a RemoveObservers(IEnumerable<NSObject>)
Commenti
L'esempio seguente illustra come gli sviluppatori possono usare questo metodo nel codice:
//
// Lambda style
//
// listening
notification = UIApplication.Notifications.ObserveWillChangeStatusBarOrientation ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("StatusBarOrientation", args.StatusBarOrientation);
});
// To stop listening:
notification.Dispose ();
//
//Method style
//
NSObject notification;
void Callback (object sender, UIKit.UIStatusBarOrientationChangeEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("StatusBarOrientation", args.StatusBarOrientation);
}
void Setup ()
{
notification = UIApplication.Notifications.ObserveWillChangeStatusBarOrientation (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Si applica a
ObserveWillChangeStatusBarOrientation(NSObject, EventHandler<UIStatusBarOrientationChangeEventArgs>)
Notifica fortemente tipizzata per la WillChangeStatusBarOrientationNotification costante.
public static Foundation.NSObject ObserveWillChangeStatusBarOrientation (Foundation.NSObject objectToObserve, EventHandler<UIKit.UIStatusBarOrientationChangeEventArgs> handler);
static member ObserveWillChangeStatusBarOrientation : Foundation.NSObject * EventHandler<UIKit.UIStatusBarOrientationChangeEventArgs> -> Foundation.NSObject
Parametri
- objectToObserve
- NSObject
Oggetto da osservare.
Metodo da richiamare quando viene inviata la notifica.
Restituisce
Oggetto token che può essere usato per interrompere la ricezione delle notifiche eliminandolo o passandolo a RemoveObservers(IEnumerable<NSObject>)
Commenti
Questo metodo può essere usato per sottoscrivere WillChangeStatusBarOrientationNotification le notifiche.
// Listen to all notifications posted for any object
var token = UIApplication.Notifications.ObserveWillChangeStatusBarOrientation ((notification) => {
Console.WriteLine ("Observed WillChangeStatusBarOrientationNotification!");
};
// Listen to all notifications posted for a single object
var token = UIApplication.Notifications.ObserveWillChangeStatusBarOrientation (objectToObserve, (notification) => {
Console.WriteLine ($"Observed WillChangeStatusBarOrientationNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();