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.
ThinCreditCard is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'ThinCreditCard'
ThinCreditCard is available under the MIT license. See the LICENSE file for more info.
Feel free to open an issue, or find me @s_tsarikovskiy on Twitter.