iOS - 仿支付宝数字键盘

RYNumberKeyboard

RYNumberKeyboard 是一个模仿支付宝的数字键盘,使用非常简单,只需将你的TextFiled的keyboardType设置成UIKeyboardTypeNumberPad即可

Demo

https://github.com/Resory/RYNumberKeyboard

效果

iOS - 仿支付宝数字键盘_第1张图片
RYNumberKeyboard.gif

使用

  #import "UITextField+RYNumberKeyboard.h"

  yourTextFiled.ry_inputType = RYIntInputType;       //数字键盘
  yourTextFiled.ry_inputType = RYIDCardInputType;    //身份证键盘
  yourTextFiled.ry_inputType = RYFloatInputType;     //浮点数键盘

  yourTextFiled.ry_interval = 4  //每隔4个数字输入一个空格

你可能感兴趣的:(iOS - 仿支付宝数字键盘)