QiuDaniel / JHVerificationCodeView

验证码输入框,验证码,code view,iOS验证码输入

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JHVerificationCodeView

A single authentication code input box

  • 单个的验证码输入框

Version

Latest release version:


Cocoapods

pod "JHVerificationCodeView"


What

image

image


Usage

    JHVCConfig *config     = [[JHVCConfig alloc] init];
    config.inputBoxNumber  = 6; 
    config.inputBoxSpacing = 5;
    config.inputBoxWidth   = 33;
    config.inputBoxHeight  = 28;
    config.tintColor       = [UIColor blackColor];
    config.secureTextEntry = YES;
    config.inputBoxColor   = [UIColor brownColor];
    config.font            = [UIFont boldSystemFontOfSize:16];
    config.textColor       = [UIColor brownColor];
    config.inputType       = JHVCConfigInputType_Number_Alphabet; // Default
    
    [self.view addSubview:({
        JHVerificationCodeView *codeView =
        [[JHVerificationCodeView alloc] initWithFrame:CGRectMake(10, 100, kScreenWidth-20, 30)
                                               config:config];
        codeView.finishBlock = ^(NSString *code) {
            label.text = code;
        };
        codeView;
    })];

Logs


More detail in Demo :)

About

验证码输入框,验证码,code view,iOS验证码输入

License:MIT License


Languages

Language:Objective-C 98.3%Language:Ruby 1.7%