orazz / CreditCardForm-iOS

CreditCardForm is iOS framework that allows developers to create the UI which replicates an actual Credit Card.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stripe

gomitaana opened this issue · comments

It´s possible to use it without Stripe?

i am going to use this together with stripe

Waiting for library to use without stripe. Because in my application, different payment gateway used. And only for this i need to install pod of stripe and too many files are added in project.

I also needed to use this pod but without stripe since I am interested only in the visual part for the management of the credit card, if it were possible to integrate it without a stripe, please give me some reference link.

commented

Waiting for library to use without stripe. Because in my application, different payment gateway used. And only for this i need to install pod of stripe and too many files are added in project.

You don't have to install Stripe.
If you're using different payment gateway just implement delegate for your textfield and in textDidChange method put this code:

creditCardForm.paymentCardTextFieldDidChange(cardNumber: textField.cardNumber, expirationYear: textField.expirationYear, expirationMonth: textField.expirationMonth, cvc: textField.cvc)

for expire year:

creditCardForm.paymentCardTextFieldDidEndEditingExpiration(expirationYear: textField.expirationYear)

cvc field did begin editing

creditCardForm.paymentCardTextFieldDidBeginEditingCVC()

cvc field did end editing

 creditCardForm.paymentCardTextFieldDidEndEditingCVC()