UIWindow.KeyboardDidChangeFrameNotification Property
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Notification constant for KeyboardDidChangeFrame
public static Foundation.NSString KeyboardDidChangeFrameNotification { get; }
member this.KeyboardDidChangeFrameNotification : Foundation.NSString
NSString constant, should be used as a token to NSNotificationCenter.
This constant can be used with the NSNotificationCenter to register a listener for this notification.
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (UIWindow.KeyboardDidChangeFrameNotification, (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.KeyboardDidChangeFrameNotification, Callback);
}