欢迎光临
我们一直在努力

JHVerificationCodeView – 验证码输入框,验证码,code view,iOS验…

建站超值云服务器,限时71元/月

JHVerificationCodeView - 验证码输入框,验证码,code view,iOS验...

项目介绍:

示例:

  1. JHVCConfig *config     = [[JHVCConfig alloc] init];
  2.     config.inputBoxNumber  = 6;
  3.     config.inputBoxSpacing = 5;
  4.     config.inputBoxWidth   = 33;
  5.     config.inputBoxHeight  = 28;
  6.     config.tintColor       = [UIColor blackColor];
  7.     config.secureTextEntry = YES;
  8.     config.inputBoxColor   = [UIColor brownColor];
  9.     config.font            = [UIFont boldSystemFontOfSize:16];
  10.     config.textColor       = [UIColor brownColor];
  11.     config.inputType       = JHVCConfigInputType_Number_Alphabet; // Default
  12.    
  13.     [self.view addSubview:({
  14.         JHVerificationCodeView *codeView =
  15.         [[JHVerificationCodeView alloc] initWithFrame:CGRectMake(10, 100, kScreenWidth-20, 30)
  16.                                                config:config];
  17.         codeView.finishBlock = ^(NSString *code) {
  18.             label.text = code;
  19.         };
  20.         codeView;
  21.     })];

复制代码

仓库地址:
https://github.com/xjh093/JHVerificationCodeView

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » JHVerificationCodeView – 验证码输入框,验证码,code view,iOS验…
分享到: 更多 (0)