UIWindow.KeyboardWillChangeFrameNotification Property

Definition

Notification constant for KeyboardWillChangeFrame

public static Foundation.NSString KeyboardWillChangeFrameNotification { get; }
member this.KeyboardWillChangeFrameNotification : Foundation.NSString

Property Value

NSString constant, should be used as a token to NSNotificationCenter.

Remarks

This constant can be used with the NSNotificationCenter to register a listener for this notification.

// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (UIWindow.KeyboardWillChangeFrameNotification, (notification) => Console.WriteLine ("Received the notification UIWindow", notification);


// Method style
void Callback (NSNotification notification)
{
    Console.WriteLine ("Received a notification UIWindow", notification);
}
void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (UIWindow.KeyboardWillChangeFrameNotification, Callback);
}

Applies to