Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to completely remove/hide card.io/paypal logo in iOS

Tags:

ios

card.io

I am using card io for scanning card in iOS app

While scanning is there any way to hide paypal/cardio logo image, please guide

like image 566
user1088267 Avatar asked Jun 19 '14 10:06

user1088267


3 Answers

You can either use the Card.IO logo or the PayPal logo but cannot remove them completely.

like image 147
paypal_louis Avatar answered Nov 01 '22 12:11

paypal_louis


Update on this answer - as of 4.0+, card.io now supports full removal of the card.io logo with the hideCardIOLogo property in CardIOView and CardIOPaymentViewController.

like image 14
Jeff Brateman Avatar answered Nov 01 '22 14:11

Jeff Brateman


CardIOPaymentViewController *scanViewController = [[CardIOPaymentViewController alloc] initWithPaymentDelegate:self];
scanViewController.hideCardIOLogo=YES;
like image 7
Varinder Singh iPhone Dev Avatar answered Nov 01 '22 12:11

Varinder Singh iPhone Dev