ios - 为什么从不调用updatedTransactions?
<p><p>用户购买商品后,输入邮箱和密码并付款,从不调用updatedTransactions方法。该项目是定期购买的,但如果不调用 updatedTransactions 方法,我无法执行代码以将项目添加到应用程序。我注意到该项目已被购买,因为如果我运行代码来恢复购买的项目,一切都会正常,并且该产品会安装到应用程序中。</p>
<p>这是我复制的购买产品的代码:</p>
<pre><code>-(IBAction)buyProduct:(id)sender {
NSLog(@"Purchasing: %@", self.product.productIdentifier);
SKPayment *payment = ;
[ addPayment:payment];
}
</code></pre>
<p>按照代码恢复产品:</p>
<pre><code>-(IBAction)restoreProduct:(id)sender {
[ addTransactionObserver:self];
[ restoreCompletedTransactions];
}
</code></pre>
<p>我注意到在最后一段代码中我有以下行:</p>
<pre><code>[ addTransactionObserver:self];
</code></pre>
<p>我也应该在购买部分添加这条线吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我通过在 buyProduct 方法中添加以下代码解决了这个问题:</p>
<pre><code>-(IBAction)buyProduct:(id)sender {
NSLog(@"Purchasing: %@", self.product.productIdentifier);
SKPayment *payment = ;
[ addTransactionObserver:self]; //added line
[ addPayment:payment];
}
</code></pre>
<p>现在在付款前和付款后调用方法 updatedTransactions。</p>
<p>使用以下代码,您可以检查一切是好是坏:</p>
<pre><code>for(SKPaymentTransaction *transaction in transactions) {
if (transaction.transactionState == SKPaymentTransactionStatePurchased) {
;
;
[ finishTransaction:transaction];
}
if (transaction.transactionState == SKPaymentTransactionStateFailed) {
;
[ finishTransaction:transaction];
}
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 为什么从不调用updatedTransactions?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/33895799/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/33895799/
</a>
</p>
页:
[1]