Partager via


UIApplication.Notifications.ObserveDidChangeStatusBarFrame Méthode

Définition

Surcharges

ObserveDidChangeStatusBarFrame(EventHandler<UIStatusBarFrameChangeEventArgs>)

Notification fortement typée pour la DidChangeStatusBarFrameNotification constante.

ObserveDidChangeStatusBarFrame(NSObject, EventHandler<UIStatusBarFrameChangeEventArgs>)

Notification fortement typée pour la DidChangeStatusBarFrameNotification constante.

ObserveDidChangeStatusBarFrame(EventHandler<UIStatusBarFrameChangeEventArgs>)

Notification fortement typée pour la DidChangeStatusBarFrameNotification constante.

public static Foundation.NSObject ObserveDidChangeStatusBarFrame (EventHandler<UIKit.UIStatusBarFrameChangeEventArgs> handler);
static member ObserveDidChangeStatusBarFrame : EventHandler<UIKit.UIStatusBarFrameChangeEventArgs> -> Foundation.NSObject

Paramètres

handler
EventHandler<UIStatusBarFrameChangeEventArgs>

Méthode à appeler lors de la publication de la notification.

Retours

Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)

Remarques

L’exemple suivant montre comment les développeurs peuvent utiliser cette méthode dans leur code :

//
// Lambda style
//

// listening
notification = UIApplication.Notifications.ObserveDidChangeStatusBarFrame ((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.ObserveDidChangeStatusBarFrame (Callback);
}

void Teardown ()
{
    notification.Dispose ();
}

S’applique à

ObserveDidChangeStatusBarFrame(NSObject, EventHandler<UIStatusBarFrameChangeEventArgs>)

Notification fortement typée pour la DidChangeStatusBarFrameNotification constante.

public static Foundation.NSObject ObserveDidChangeStatusBarFrame (Foundation.NSObject objectToObserve, EventHandler<UIKit.UIStatusBarFrameChangeEventArgs> handler);
static member ObserveDidChangeStatusBarFrame : Foundation.NSObject * EventHandler<UIKit.UIStatusBarFrameChangeEventArgs> -> Foundation.NSObject

Paramètres

objectToObserve
NSObject

Objet à observer.

handler
EventHandler<UIStatusBarFrameChangeEventArgs>

Méthode à appeler lors de la publication de la notification.

Retours

Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)

Remarques

Cette méthode peut être utilisée pour DidChangeStatusBarFrameNotification s’abonner aux notifications.

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

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

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

S’applique à