CocoaPods trunk is moving to be read-only. Read more on the blog, there are 16 months to go.

YNumberKeyboard 0.0.1

YNumberKeyboard 0.0.1

Maintained by YB.



  • By
  • zyb

设置UITextField的inputView为自己的键盘 并设置代理 通过代理回调填充或操作其他 YNumberKeyboard *keyboard = [[YNumberKeyboard alloc] initWithDelegate:self andTextfield:textField]; textField.inputView = keyboard;

代理看自己需要用不用 @protocol YNumberKeyboardDelegate

  • (void) numberKeyboardInput:(NSInteger) number textField:(UITextField *)textField;
  • (void) numberKeyboardBackspaceWithTextField:(UITextField *)textField;
  • (void) doneKeyboardType; @end