MGKeyboardAccessory
MGKeyboardAccessory is a keyboard accessory to input special characters in UITextField or UI directly. It allows developers to add the custom button with characters in keyboard accessory, characters in the button will be inserted to text field if the button is clicked.
Features
- Support custom characters.
- Support two styles: defualt and dark.
- Support UITextField, UITextView and their subclasses.
Example
To run the example project, clone the repo, and run pod install
from the Example directory first.
Installation
MGKeyboardAccessory is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'MGKeyboardAccessory', '~> 0.4'
How to use
Build and import the module:
import MGKeyboardAccessory
It is very simple to add a keyboard accessoray for text field. In our demo, we added a black style accessoray:
blackTextField.setupKeyboardAccessory([":", "/", "\""], barStyle: .black)
The first parameter is a string array to create custom button, the second parameter is the bar style. Use UIBarStyle provided by UIKit directly.
Reactive extension for RxSwift
MGKeyboardAccessory also supports reactive extension for RxSwift.
Observable.just([":", "/", "?", "&", ".", "="])
.bind(to: textView.rx.keyboardAccessoryStrings(style: .black)).disposed(by: disposeBag)
Author
Meng Li, http://www.fczm.pw, [email protected]
License
MGKeyboardAccessory is available under the MIT license. See the LICENSE file for more info.