检查应用内购买是否受到限制
在 iPhone 上,我可以进入常规 -> 限制并锁定应用内购买。在代码方面,如何检查用户是否已执行此操作?
On the iPhone I can go into General->Restrictions and lock out InApp purchases. On the code side how do I check if the user has done this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个名为 SKPaymentQueue 它有一个类方法
canMakePayments
,它可以告诉您用户是否可以进行购买,您可以检查该文档说:
There is a StoreKit class called SKPaymentQueue which has a class method
canMakePayments
which can tell you if a user can make purchases which you can checkThe Documentation says: