Giter VIP home page Giter VIP logo

otpfieldview's Introduction

OTPFieldView

One Time Password View for iOS. Built in Swift 5

Swift 5 compatible Platform iOS License: MIT

Preview

demo demo demo demo demo

Installation

CocoaPods

Add the following line to your Podfile:

pod 'OTPFieldView'

Then run the following in the same directory as your Podfile:

pod install

Usage

Code

@IBOutlet var otpTextFieldView: OTPFieldView!

func setupOtpView(){
        self.otpTextFieldView.fieldsCount = 5
        self.otpTextFieldView.fieldBorderWidth = 2
        self.otpTextFieldView.defaultBorderColor = UIColor.black
        self.otpTextFieldView.filledBorderColor = UIColor.green
        self.otpTextFieldView.cursorColor = UIColor.red
        self.otpTextFieldView.displayType = .underlinedBottom
        self.otpTextFieldView.fieldSize = 40
        self.otpTextFieldView.separatorSpace = 8
        self.otpTextFieldView.shouldAllowIntermediateEditing = false
        self.otpTextFieldView.delegate = self
        self.otpTextFieldView.initializeUI()
    }

The becomeFirstResponderAtIndex property sets the pinField at the specified index as the first responder. The isContentTypeOneTimeCode property sets the contentType of the first pinField to .oneTimeCode to leverage the iOS 12 feature where the passcode is directly fetched from the messages.

Styles

enum DisplayType: Int {
    case circular
    case roundedCorner
    case square
    case diamond
    case underlinedBottom
}

Delegate Methods

extension OtpViewController: OTPFieldViewDelegate {
    func hasEnteredAllOTP(hasEnteredAll hasEntered: Bool) -> Bool {
        print("Has entered all OTP? \(hasEntered)")
        return false
    }
    
    func shouldBecomeFirstResponderForOTP(otpTextFieldIndex index: Int) -> Bool {
        return true
    }
    
    func enteredOTP(otp otpString: String) {
        print("OTPString: \(otpString)")
    }
}
  • hasEnteredAllOTP(): Returns true when all text Fields are full.
  • shouldBecomeFirstResponderForOTP(): Show keyboard automatically.
  • enteredOTP(): Get entered pin.

Properties

  • .displayType: Display type for Text Field.

  • .fieldsCount: Length of OTP.

  • .otpInputType: Input type for Text Field : numeric, alphabet, alphaNumeric.

  • .fieldFont: Font for Text Field.

  • .secureEntry: Shows โ€ข instead of text.

  • .hideEnteredText: Hides the text.

  • .requireCursor: Shows/Hides cursor.

  • .cursorColor: Color for Cursor.

  • .fieldSize: Size of Text Field.

  • .separatorSpace: Space between Text Fields.

  • .fieldBorderWidth: Border width for Text Fields.

  • .shouldAllowIntermediateEditing: Allow to edit from middle.

  • .defaultBackgroundColor: Empty text field background color.

  • .filledBackgroundColor: Filled text field background color.

  • .defaultBorderColor: Empty text field border color.

  • .filledBorderColor: Filled text field border color.

  • .errorBorderColor: Error text field border color.

  • .delegate: delegate.

License

OTPFieldView is available under the MIT license. See LICENSE for details.

otpfieldview's People

Contributors

root-vb avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.