Skip to content

tsarikovskiy/ThinCreditCard

Repository files navigation

ThinCreditCard

CI Status Version License Platform PRs Welcome

Example

class ViewController: UIViewController {

    @IBOutlet weak var cardNumberView: CreditCardValidatorView!

    override func viewDidLoad() {
        super.viewDidLoad()
        cardNumberView.delegate = self
    }
}

extension ViewController: CreditCardValidatorViewDelegate {
    func didEdit(number: String) {
        // Play with card number
    }

    func didEdit(expiryDate: String) {
        // Play with expiry date
    }

    func didEdit(cvc: String) {
        // Play with cvc
    }
}

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

Installation

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

pod 'ThinCreditCard'

License

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

Questions or feedback?

Feel free to open an issue, or find me @s_tsarikovskiy on Twitter.