我正在尝试将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];
}
}];
答案 0 :(得分:0)
自您使用的教程以来,他们的API已经更新。
新的访问方法是:
[[STPAPIClient sharedClient] createTokenWithCard:card completion:completion]