0

我在 ViewController 中没有看到 Paypal 按钮。

UIButton *button = [[PayPal getPayPalInst]getPayButtonWithTarget:self andAction:@selector(payWithPayPal) andButtonType:BUTTON_278x43];

以上是我的代码。我没有得到它ButtonType。它在日志中向我展示了这个......

Printing description of button:
<nil>

而不是这个...

Printing description of button:
<UIButton: 0x72c6020; frame = (0 0; 278 43); opaque = NO; layer = <CALayer: 0x72bc910>>

我是 iPhone 的新手,所以任何想法都会对我有很大帮助。谢谢。

4

1 回答 1

0

您在上一堂课中错过了此代码,您将在当前班级上课。您需要先初始化 PayPal:-

[[PayPal getPayPalInst] fetchDeviceReferenceTokenWithAppID:@"APP-80W284485P519543T" forEnvironment:ENV_SANDBOX withDelegate:self];
[[PayPal getPayPalInst] setLang:@"it_IT"];

希望这可以帮助你..

于 2013-01-17T12:06:32.733 回答