gpt4 book ai didi

swift - 如何使用 Parse 恢复应用内购买?

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

我想创建一个“恢复应用内”按钮,因为 Apple 需要它。我正在为我的 iAP 产品使用 Parse,并使用以下代码来执行此操作:

PFPurchase.buyProduct("iapbanner", block: { (error:NSError!) -> Void in
if error != nil {
let alert = UIAlertController(title: "Errore", message: error?.localizedDescription, preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.Default, handler: nil))
self.presentViewController(alert, animated: true, completion: nil)
} else {
self.opzioniTableView.reloadData()
}
})

这很好用。不过,在 Parse 的文档中没有提到如何恢复你的 iAp,所以我问你。

最佳答案

使用 PFPurchase.restore() 恢复通过 Parse 进行的购买。我不确定为什么他们的文档中没有这个。

关于swift - 如何使用 Parse 恢复应用内购买?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32632428/

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