我们不使用CVV来处理交易,因为我们处理定期付款,并且存储CVV违反PCI法规。因此,我们希望从屏幕上删除该字段,以免误导用户。我们如何自定义不需要CVV的屏幕?

我们通过Android使用以下方法做到了这一点:
 scanIntent.putExtra(CardIOActivity.EXTRA_REQUIRE_CVV,false);

最佳答案

我找到了解决方案;在CardIOPaymentViewController上设置collectCVV属性即可。

CardIOPaymentViewController *scanViewController = [[CardIOPaymentViewController alloc] initWithPaymentDelegate:self];
scanViewController.appToken = @"bdb50937d5a7473a8c337c33a5e407ef";
scanViewController.collectCVV = NO;

08-19 12:19