UIKeyboard.Notifications Class

Definition

Notification posted by the UIKeyboard class.

public static class UIKeyboard.Notifications
type UIKeyboard.Notifications = class
Inheritance
UIKeyboard.Notifications

Remarks

This is a static class which contains various helper methods that allow developers to observe events posted in the iOS notification hub (NSNotificationCenter).

The methods defined in this class post events invoke the provided method or lambda with a NSNotificationEventArgs parameter which contains strongly typed properties for the notification arguments.

Methods

ObserveDidChangeFrame(EventHandler<UIKeyboardEventArgs>)

Strongly typed notification for the DidChangeFrameNotification constant.

ObserveDidChangeFrame(NSObject, EventHandler<UIKeyboardEventArgs>)

Strongly typed notification for the DidChangeFrameNotification constant.

ObserveDidHide(EventHandler<UIKeyboardEventArgs>)

Strongly typed notification for the DidHideNotification constant.

ObserveDidHide(NSObject, EventHandler<UIKeyboardEventArgs>)

Strongly typed notification for the DidHideNotification constant.

ObserveDidShow(EventHandler<UIKeyboardEventArgs>)

Strongly typed notification for the DidShowNotification constant.

ObserveDidShow(NSObject, EventHandler<UIKeyboardEventArgs>)

Strongly typed notification for the DidShowNotification constant.

ObserveWillChangeFrame(EventHandler<UIKeyboardEventArgs>)

Strongly typed notification for the WillChangeFrameNotification constant.

ObserveWillChangeFrame(NSObject, EventHandler<UIKeyboardEventArgs>)

Strongly typed notification for the WillChangeFrameNotification constant.

ObserveWillHide(EventHandler<UIKeyboardEventArgs>)

Strongly typed notification for the WillHideNotification constant.

ObserveWillHide(NSObject, EventHandler<UIKeyboardEventArgs>)

Strongly typed notification for the WillHideNotification constant.

ObserveWillShow(EventHandler<UIKeyboardEventArgs>)

Strongly typed notification for the WillShowNotification constant.

ObserveWillShow(NSObject, EventHandler<UIKeyboardEventArgs>)

Strongly typed notification for the WillShowNotification constant.

Applies to