This repository was archived by the owner on Jan 12, 2019. It is now read-only.

Description
I have an issue with changing the guideColor of card.io's scanning brackets. I was told it was a bug on card.io's end - are there any updates on changing the guide color? - here is my code as well
here is my code -
self.readCardInfo = [[CardIOPaymentViewController alloc] initWithPaymentDelegate:self];
self.readCardInfo.appToken = @"xxxxxxxxxxxxxxx";
;
[self.readCardInfo setGuideColor:[UIColor colorWithRed:.310 green:.671 blue:.890 alpha:1.0]];
self.readCardInfo.scanOverlayView = guideView;
self.readCardInfo.hideCardIOLogo = YES;
self.readCardInfo.detectCardOnly = NO;
self.readCardInfo.showsFirstUseAlert = NO;
self.readCardInfo.collectZip = NO;
self.readCardInfo.scanInstructions = @"Scan the front of your card";
[self presentViewController:self.readCardInfo animated:NO completion:nil];