用iPhone实现Stripe

时间:2015-01-29 21:14:30

标签: ios objective-c in-app-purchase stripe-payments

我正在尝试将Stripe与ios集成。我正在关注this指南。

我在{使用STPCard'时卡住here

当我开始输入此[Stripe createTokenWithCard:card... Xcodes'智能代码完成'时,会在其中显示一条红线(有点像某些内容被删除时)。

这是代码。

[Stripe createTokenWithCard:card completion:^(STPToken *token, NSError *error) {
    if (error) {
      [self handleError:error];
    } else {
      [self createBackendChargeWithToken:token];
    }
  }];

1 个答案:

答案 0 :(得分:0)

自您使用的教程以来,他们的API已经更新。

新的访问方法是:

[[STPAPIClient sharedClient] createTokenWithCard:card completion:completion]