gpt4 book ai didi

ios - strip 错误 : 'createTokenWithCard(_:completion:)' is unavailable

转载 作者:行者123 更新时间:2023-11-30 14:16:40 26 4
gpt4 key购买 nike

Xcode 告诉我出现如下错误:“createTokenWithCard(_:completion:)”不可用

这是代码行:

Stripe.createTokenWithCard(creditCard, completion: { (token, stripeError) -> Void in

有人可以纠正我的错误吗?

我使用的是 Xcode 6.1

最佳答案

这应该解决它:

let StripePublishableKey = "YOUR_TEST_KEY"
let stpClient = STPAPIClient(publishableKey: StripePublishableKey)

stpClient.createTokenWithCard(creditCard, completion: {
(token, stripeError) -> Void in

if (stripeError == nil)
{
// Your code here
}
else
{
// Print error message here
}
})

关于ios - strip 错误 : 'createTokenWithCard(_:completion:)' is unavailable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31082458/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com