InputManager

public protocol InputManager: class

InputManager is a protocol that makes integrating plugins to the InputBarAccessoryView easy.

  • Should reload the state if the InputManager

    Declaration

    Swift

    func reloadData()
  • Should remove any content that the InputManager is managing

    Declaration

    Swift

    func invalidate()
  • Should handle the input of data types that an InputManager manages

    Declaration

    Swift

    func handleInput(of object: AnyObject)