Home

Awesome

SAPinViewController

Build Status Version License Platform

Simple and easy to use default iOS PIN screen. This simple library allows you to draw a fully customisable PIN screen same as the iOS default PIN view. My inspiration to create this library was form THPinViewController, however SAPinViewController is completely implemented in Swift. Also the main purpose of creating this library was to have simple, easy to use and fully customisable PIN screen.

Features

Usage

// initial a "SAPinViewController" via the designate initialiser
let pinVC = SAPinViewController(withDelegate: self, backgroundImage: UIImage(named: "bg3"))
// setup different properties
pinVC.subtitleText = "Your passcode is required to enable Touch ID"
pinVC.buttonBorderColor = UIColor.whiteColor()
pinVC.alphabetColor = UIColor.whiteColor()
pinVC.showAlphabet = true // default is true
// ... and other properties
// present it
presentViewController(pinVC, animated: true, completion: nil)
// implement delegate methods
extension ViewController: SAPinViewControllerDelegate {
    func pinEntryWasCancelled() {
        dismissViewControllerAnimated(true, completion: nil)
    }
    func pinEntryWasSuccessful() {
        dismissViewControllerAnimated(true, completion: nil)
    }
    func pinWasIncorrect() {

    }
    func isPinValid(pin: String) -> Bool {
        return pin == pinString
    }
}

Screenshots

With Logo:

<img src="6PlusLogo.png" width="79%" />

iPhone 4

<img src="4s.png" width="49%" />

iPhone 5

<img src="5.png" width="59%" />

iPhone 6

<img src="6.png" width="69%" />

iPhone 6 plus

<img src="6Plus.png" width="79%" />

iPad landscape

<img src="ipad-landscape.png" width="66%" />

iPad portrait

<img src="iPad-potrait.png" width="66%" />

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

SAPinViewController is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "SAPinViewController"

Author

Siavash, siavash@siavashalipour.com

License

SAPinViewController is available under the MIT license. See the LICENSE file for more info.

Contribution

If you have any feature requests or bug-fixes feel free to create an issue or send a pull request.