KeyboardEvent

public enum KeyboardEvent

Keyboard events that can happen. Translates directly to UIKeyboard notifications from UIKit.

  • Event raised by UIKit’s .UIKeyboardWillShow.

    Declaration

    Swift

    case willShow
  • Event raised by UIKit’s .UIKeyboardDidShow.

    Declaration

    Swift

    case didShow
  • Event raised by UIKit’s .UIKeyboardWillShow.

    Declaration

    Swift

    case willHide
  • Event raised by UIKit’s .UIKeyboardDidHide.

    Declaration

    Swift

    case didHide
  • Event raised by UIKit’s .UIKeyboardWillChangeFrame.

    Declaration

    Swift

    case willChangeFrame
  • Event raised by UIKit’s .UIKeyboardDidChangeFrame.

    Declaration

    Swift

    case didChangeFrame
  • Non-keyboard based event raised by UIKit

    Declaration

    Swift

    case unknown