ToolBarInterface

public protocol ToolBarInterface : UIView

Abstract protocol for fields input accessory views. You can add buttons to switch between input fields, guidedField will help you with this. Or you can ignore this field and create your own custom toolbar! Because protocol have default implementation and all of it’s components is optional.

  • guidedField Default implementation

    Field that allows you to manage responder chain from your views

    Default Implementation

    Declaration

    Swift

    var guidedField: GuidedTextField? { get set }
  • updateNavigationButtons() Default implementation

    In this method you have to update your toolbars’s appearance via field states

    Default Implementation

    Declaration

    Swift

    func updateNavigationButtons()
  • textDidChange(text:) Default implementation

    Invokes when text in connected field did change

    Default Implementation

    Declaration

    Swift

    func textDidChange(text: String)