An iOS keyboard, that supports entering hex-values to the UITextField.
- Minimum Deployment Target: 9.0
Copy the header, implementation and the image files to your project.
To integrate HexKeyboard in your app use CocoaPods. Add this to your Podfile:
pod 'MRHexKeyboard', :git => 'https://github.com/doofyus/HexKeyboard.git', :branch => "master"
SetMRHexKeyboard
to the UITextField's inputView in viewDidLoad (or where you find it most suitable).
Obj-c:
aTextField.inputView = [[MRHexKeyboard alloc] init];
Swift:
aTextField.inputView = MRHexKeyboard()
HexKeyboard is released under the MIT License.