私はこれを機能させることができず、すべてのサンプルコードは非推奨のようです。私は多くの定数を更新することができましたが、誰かがサンプルを持っていますか。サンドボックスアプリIDを持っています。これまでにライブラリを追加しました:
@interface PaymentViewController ()
@property (weak, nonatomic) IBOutlet UIButton *paypalButton;
@end
- (void)viewDidLoad {
[super viewDidLoad];
// 1. spawn a new thread to initialize the paypal library
// TODO: spawn a new thread
[PayPal initializeWithAppID:SANDBOX_APP_ID forEnvironment:ENV_SANDBOX];
// 2. generate the 'pay with paypal' button
self.paypalButton = [[PayPal getInstance] getPayButtonWithTarget:self
andAction:@selector(payWithPayPal)
andButtonType:BUTTON_278x43
andButtonText:BUTTON_TEXT_PAY];
}
// 3. add the payment details
// 4. wait for callback