gpt4 book ai didi

iphone - iPhone 应用程序内购买

转载 作者:行者123 更新时间:2023-12-03 21:11:14 25 4
gpt4 key购买 nike

我正在开发一个 iPhone 应用程序。为此,我已成功添加应用内购买功能。它非常适合单件商品购买。我的问题是,如何通过向 App Store 发出单一购买请求来购买多件商品?有人可以帮助我吗?

最佳答案

您可以在SKPayment中使用quantity属性...读取您想要从用户那里获得的商品数量,然后将此值传递给 payment.quantity (默认为 1)。

SKPayment *payment = [SKPayment paymentWithProductIdentifier:inProductID];
payment.quantity = mNoOfItemsYouWant;
[[SKPaymentQueue defaultQueue]addTransactionObserver:mTransactionObserver];
[[SKPaymentQueue defaultQueue] addPayment:payment];

关于iphone - iPhone 应用程序内购买,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3201028/

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