0

Card.io SDK を使用してクレジット カードをスキャンすると、iOS Phonegap アプリがクラッシュします。

カードはスキャンされ、数字がオーバーレイされたカードを表示する画面に進みます。アプリがクラッシュすると、コンソールに次のエラーがスローされます。

[CardIOCreditCardInfo displayStringForCardType:]: unrecognized selector sent to class         0x271c88
2013-06-09 23:33:37.767 Cardio_HolaWorld[49544:907] *** Terminating app due to uncaught     exception 'NSInvalidArgumentException', reason: '+[CardIOCreditCardInfo     displayStringForCardType:]: unrecognized selector sent to class 0x271c88'
*** First throw call stack:
(0x331312a3 0x3ae5997f 0x33134ca3 0x33133531 0x3308af68 0xb6479 0x13a5e7 0x350240c5     0x3502414d 0x350240c5 0x35024077 0x35024055 0x3502390b 0x35023e01 0x34f4c5f1 0x34f39801     0x34f3911b 0x36c515a3 0x36c511d3 0x33106173 0x33106117 0x33104f99 0x33077ebd 0x33077d49     0x36c502eb 0x34f8d301 0xb4f5f 0xb4f20)
libc++abi.dylib: terminate called throwing an exception
(lldb) 

CardIOPGPlugin.m ファイル (Card.io Phonegap プラグイン) に、Xcode が強調表示する行があります。

[CardIOCreditCardInfo displayStringForCardType:info.cardType], @"card_type",

iPhone 4S デバイスで Phonegap 2.7、iOS 6.1.3、Xcode 4.6.2、OS X 10.8.3 でビルドしています。

4

1 に答える 1

2

@Paul 最新の card.io SDK を使用している場合は、101 行目の CardIOPGPlugin.m ファイルを変更するだけです。

[CardIOCreditCardInfo displayStringForCardType:info.cardType]

[CardIOCreditCardInfo displayStringForCardType:info.cardType usingLanguageOrLocale:[[NSLocale currentLocale] localeIdentifier]]

それが役に立てば幸い。

于 2013-06-11T01:10:10.727 に答える