使用 iPhone 实现 Stripe

Implementing Stripe with iPhone

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

here 卡在了 'Using an STPCard'。

当我开始输入这个 [Stripe createTokenWithCard:card... Xcodes 'Intelligent code completion' 时会在它上面放一条红线(有点像当某些东西被贬低时)。

这是代码。

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

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

新的访问方法是:

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