All Projects → xiaozhuxiong121 → PGNumberKeyboard

xiaozhuxiong121 / PGNumberKeyboard

Licence: MIT License
一款非常简单漂亮灵活的自定义数字键盘.

Programming Languages

objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to PGNumberKeyboard

hotscript
HotScript - Revolutionizing how Windows works.
Stars: ✭ 29 (+81.25%)
Mutual labels:  keyboard
Medusa
Ble 5x7 Ortholinear Keyboard
Stars: ✭ 28 (+75%)
Mutual labels:  keyboard
creviceapp
Multi purpose utility which supports gestures with mouse and keyboard.
Stars: ✭ 22 (+37.5%)
Mutual labels:  keyboard
FN-key-lock
A Script/Program to simulate hardware F key lock on F1-F12 keys with custom controls and visible lock notifications.
Stars: ✭ 25 (+56.25%)
Mutual labels:  keyboard
ucollage
An extensible command line image viewer inspired by vim
Stars: ✭ 161 (+906.25%)
Mutual labels:  keyboard
waffling60
Multi layout 60% PCB with support for common ANSI and ISO layouts and split space. SE-version is for use in Polaris, DB-version for use in Bakeneko/Kei.
Stars: ✭ 42 (+162.5%)
Mutual labels:  keyboard
keyswitch-kicad-library
Footprints for popular keyboard switches
Stars: ✭ 163 (+918.75%)
Mutual labels:  keyboard
YetAnotherKeyDisplayer
The application for displaying pressed keys of the keyboard
Stars: ✭ 88 (+450%)
Mutual labels:  keyboard
ShortcutJS
Keyboard manager for javascript and typescript, made for humans 😎
Stars: ✭ 26 (+62.5%)
Mutual labels:  keyboard
keyboard
Maliit Keyboard, a free software virtual keyboard for Linux
Stars: ✭ 63 (+293.75%)
Mutual labels:  keyboard
KeyLy
A powerfull and awesome Keylogger(Your keyboard and your mouse) realy helpfull for hackers! :-P (C/C++)
Stars: ✭ 17 (+6.25%)
Mutual labels:  keyboard
OttoKeyboardView
自定义键盘,支持数字、小数点、身份证、十六进制键盘、随机布局的安全数字键盘
Stars: ✭ 62 (+287.5%)
Mutual labels:  keyboard
global-keypress
Global key press event emitter.
Stars: ✭ 25 (+56.25%)
Mutual labels:  keyboard
telegram-keyboard
Simple and powerful reply and inline keyboard builder for Telegram Bots
Stars: ✭ 70 (+337.5%)
Mutual labels:  keyboard
swipe-keyboard
Swype type keyboard module for simple-keyboard
Stars: ✭ 32 (+100%)
Mutual labels:  keyboard
lumberjack-keyboard
5x12 ortholinear through-hole component keyboard PCB for standard 60% cases
Stars: ✭ 231 (+1343.75%)
Mutual labels:  keyboard
keykee
这是一个记录键盘的使用情况的软件,精确统计每个按键,按键24小时统计,按键频次趋势分析
Stars: ✭ 15 (-6.25%)
Mutual labels:  keyboard
usbhostcopro
USB Host Co-processor
Stars: ✭ 54 (+237.5%)
Mutual labels:  keyboard
SwipeSelection
An improvement to iOS's text editing that allows you to move the cursor and select text using gestures on the keyboard itself.
Stars: ✭ 99 (+518.75%)
Mutual labels:  keyboard
reviung41-build-guide
Build guide for the Reviung41 keyboard.
Stars: ✭ 16 (+0%)
Mutual labels:  keyboard

PGNumberKeyboard

一款非常简单漂亮灵活的自定义数字键盘,可以输入负数,内置了数字验证算法。你不需要在判断输入的小数或者负数是否合法

Installation with CocoaPods

pod 'PGNumberKeyboard', '~> 1.0.4'

Usage

UITextField

#import <PGNumberKeyboard/PGNumberKeyboard.h>

self.yourTextField.inputView = [[PGNumberKeyboard alloc]initWithTextField:self.yourTextField];

UITextView

self.yourTextView.inputView = [[PGNumberKeyboard alloc]initWithTextView:self.yourTextView];

Advanced Usage

UITextField

PGNumberKeyboard *keyboard = [[PGNumberKeyboard alloc]initWithTextField:self.yourTextField];
keyboard.delegate = self;
self.yourTextField.inputView = keyboard;

#pragma mark - PGNumberKeyboardManagerDelegate

- (void)editChanage:(id)sender {
}

UITextView

PGNumberKeyboard *keyboard = [[PGNumberKeyboard alloc] initWithTextView:self.yourTextView];
keyboard.delegate = self;
self.yourTextView.inputView = keyboard;

#pragma mark - PGNumberKeyboardManagerDelegate

- (void)editChanage:(id)sender {
}

Overview

http://www.jianshu.com/p/d6455564675e

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].