Mat*_*der 4 in-app-purchase ios
我恢复购买的问题.
我使用本教程将IAP集成到我的应用教程中
但是在我在app store上传我的二进制文件后,Apple拒绝了我的应用程序,因为它没有使用恢复选项.
现在我尝试将此方法集成到app
- (void)restorePurchases {
[[SKPaymentQueue defaultQueue] restoreCompletedTransactions];
}
Run Code Online (Sandbox Code Playgroud)
但我认为仍然需要做点什么,因为它仍然不起作用.
感谢帮助!
您需要实现这些委托方法才能完成还原
- (void)restoreTransaction:(SKPaymentTransaction *)transaction
-(void)paymentQueue:(SKPaymentQueue *)queue restoreCompletedTransactionsFailedWithError:(NSError *)error
-(void)paymentQueueRestoreCompletedTransactionsFinished:(SKPaymentQueue *)queue
Run Code Online (Sandbox Code Playgroud)