Search code examples
iosobjective-cscanningcard.io

Get full card number in human readable formate using card.io


i have used card.io to scan my credit card. I got the scanned number but it is showing ************8480 . How can i get the exact number. I want to the detect full number.


Solution

  • Thanks Everyone for help. I got the solution. I have replaced info.redactedCardNumber to info.cardNumber. Now it is giving full card number.

    lblDetail.text = [NSString stringWithFormat:@"Received card info. Number: %@, expiry: %02lu/%lu, cvv: %@.", info.cardNumber, (unsigned long)info.expiryMonth, (unsigned long)info.expiryYear, info.cvv];