Share via


UIKeyboard.Notifications Class

Definition

Notifications posted by the UIKeyboard class.

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

Remarks

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

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

Methods

Name Description
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