MGKeyboardAccessory 0.7

MGKeyboardAccessory 0.7

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Jun 2022
SPMSupports SPM

Maintained by [Meng Li].



MGKeyboardAccessory

CI Status Version License Platform swift

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.

MGKeyboardAccessory

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.