我正在尝试将 PayPal MPL 库集成到 iOS 应用程序中。我有一个 UIViewController 正在创建 PayPal 按钮,如下所示:
- (void)viewDidLoad
{
[PayPal initializeWithAppID:SANDBOX_API_KEY
forEnvironment:ENV_SANDBOX];
UIButton* paypalButton = [[PayPal getPayPalInst] getPayButtonWithTarget:self andAction:@selector(checkoutPayment) andButtonType:BUTTON_294x43];
[self.view addSubview:paypalButton];
[super viewDidLoad];
}
应用程序在打开 ViewController 后一秒左右将以下错误消息打印到控制台。
Checking Error********************
Posting Error: 2147483647
DEVELOPER ERROR: This app isn’t using a supported version of the PayPal library.
我在 Google 上找不到有关此错误的任何信息,所以我在这里。关于如何解决它的任何想法?
我正在使用 xcode 4.5 和 iOS 6 beta 进行测试,以及 MPL 库的 1_5_5_070_iPhone_DevelopersPackage 版本(网站上的最新版本)。