All Projects → xjh093 → Jhverificationcodeview

xjh093 / Jhverificationcodeview

Licence: mit
验证码输入框,验证码,code view,iOS验证码输入

Projects that are alternatives of or similar to Jhverificationcodeview

F License
Open Source License Key Generation and Verification Tool written in Go
Stars: ✭ 535 (+457.29%)
Mutual labels:  verification
Gesture recognition
a gesture recognition verification lock
Stars: ✭ 37 (-61.46%)
Mutual labels:  verification
Ssri
Standard Subresource Integrity library for Node.js
Stars: ✭ 69 (-28.12%)
Mutual labels:  verification
Cocotb
cocotb, a coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python
Stars: ✭ 740 (+670.83%)
Mutual labels:  verification
Liquidhaskell
Liquid Types For Haskell
Stars: ✭ 863 (+798.96%)
Mutual labels:  verification
Scrypt Interactive
[DEPRECATED] Truebit Verification for Scrypt
Stars: ✭ 47 (-51.04%)
Mutual labels:  verification
Cryptominisat
An advanced SAT solver
Stars: ✭ 502 (+422.92%)
Mutual labels:  verification
Sea Dsa
A new context, field, and array-sensitive heap analysis for LLVM bitcode based on DSA.
Stars: ✭ 90 (-6.25%)
Mutual labels:  verification
Rverify.js
✅❎ A lightweight image rotation verification plugin.
Stars: ✭ 33 (-65.62%)
Mutual labels:  verification
Reachabilityanalysis.jl
Methods to compute sets of states reachable by dynamical systems
Stars: ✭ 59 (-38.54%)
Mutual labels:  verification
Smsverifycatcher
Android library for phone number verification feature in your app. Automatically copies verification code from SMS right into the app. Made by Stfalcon
Stars: ✭ 788 (+720.83%)
Mutual labels:  verification
Trumail
✉️ ✅ A Fast and Free Email Verification API written in Go
Stars: ✭ 937 (+876.04%)
Mutual labels:  verification
Smsretrieverapimaster
Automatic SMS Verification with the SMS Retriever API
Stars: ✭ 48 (-50%)
Mutual labels:  verification
Pact broker
Enables your consumer driven contracts workflow
Stars: ✭ 540 (+462.5%)
Mutual labels:  verification
Vonage Java Sdk
Vonage Server SDK for Java. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
Stars: ✭ 75 (-21.87%)
Mutual labels:  verification
Cosette
Cosette is an automated SQL solver.
Stars: ✭ 533 (+455.21%)
Mutual labels:  verification
Owasp Masvs
The Mobile Application Security Verification Standard (MASVS) is a standard for mobile app security.
Stars: ✭ 1,030 (+972.92%)
Mutual labels:  verification
Minasmsverification
短信验证:基于阿里云的 微信小程序 功能模块: 直接用 / mini-program + Node.js + Alibaba Cloud / Front & Back End
Stars: ✭ 94 (-2.08%)
Mutual labels:  verification
Tulip Control
Temporal Logic Planning toolbox
Stars: ✭ 81 (-15.62%)
Mutual labels:  verification
Perennial
Verifying concurrent crash-safe systems
Stars: ✭ 57 (-40.62%)
Mutual labels:  verification

JHVerificationCodeView

A single authentication code input box

  • 单个的验证码输入框

Version

Latest release version:

Swift 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 :)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].