Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 773 Bytes

README.md

File metadata and controls

33 lines (19 loc) · 773 Bytes

RAkeyboardtoolbar

RAkeyboardToolbar will help you to add accessary toolbar on all UITextFields and UITextViews you want.

Alt Text

Create RAkeyboardAccessoryToolbar class object.

var keyboardAccessory = RAkeyboardAccessoryToolbar()

Add all the textfield in array.

keyboardAccessory.textFieldArray = [firstNameTextField, lastnameTextField, emailTextField,phoneTextField]

Set textfield as current view in textFieldDidBeginEditing.

 // MARK: - Textfield Delegates
    func textFieldDidBeginEditing(textField: UITextField!) {
        textField.inputAccessoryView = keyboardAccessory
        keyboardAccessory.currentView = textField
    }