JUIPwTextField - 一款基于UIView的随机数字密码输入框

jopen 9年前

JUIPwTextField

一款基于UIView的随机数字密码输入框

所有属性: /**

  • 是否显示掩码按钮(默认为否) / @property (nonatomic, assign) BOOL hasEyeButton; /*
  • 切换编辑状态(是/否) / @property (nonatomic, assign) BOOL beginEditing; /*
  • 最大输入字符数量(默认为10) / @property (nonatomic, assign) NSInteger maxCount; /*
  • 编辑框内容(只读) / @property (nonatomic, copy, readonly) NSString *text; /*
  • 主题色(<文本,边框,光标的颜色>默认为黑色) / @property (nonatomic, strong) UIColor *tintColor; /*
  • 占位符 / @property (nonatomic, copy) NSString *placeHolder; /*
  • 边框样式(默认为细线边框) / @property (nonatomic, assign) JUIPwTextFieldFrameStyle textFieldFrameStyle; /*
  • delegate 委托属性 / @property (nonatomic, weak) iddelegate; /
  • 键盘高度 */
    • (CGFloat)keyboardHeight;
    </li> </ul>

    委托方法: /**

    • 开始编辑时调用 */
      • (void)textFieldDidBeginEditing:(JUIPwTextField )textField; /*
      </li>
    • 结束编辑时调用 */
      • (void)textFieldEndEditing:(JUIPwTextField )textField; /*
      • </ul> </li>
      • 点击完成按钮时调用 */
        • (void)textFieldShouldFinish:(JUIPwTextField )textField; /*
        • </ul> </li>
        • 内容发生改变时调用 */