Apple, отклонить из-за покупки приложения не реализовать восстановление [закрыто]

Я получил отказ от Apple с сообщением:

... Additionally, we found that while your app offers In-App Purchase(s) that can be restored, it does not include the required "Restore" feature to allow users to restore the previously purchased In-App Purchase(s), as specified in Restoring Transactions section of the In-App Purchase Programming Guide:

"...if your application supports product types that must be restorable, you must include an interface that allows users to restore these purchases. This interface allows a user to add the product to other devices or, if the original device was wiped, to restore the transaction on the original device."

To restore previously purchased In-App Purchase products, it would be appropriate to provide a "Restore" button and initiate the restore process when the "Restore" button is tapped by the user.

For more information about restoring transactions and verifying store receipt, please refer to the In-App Purchase Programming Guide. ...

И я нашел этостраница, и я следовал примеру кода, но после того, как я позвонил

- (void) checkPurchasedItems{
   [[SKPaymentQueue defaultQueue] restoreCompletedTransactions];
}

другой делегат не был уволен!

- (void) paymentQueueRestoreCompletedTransactionsFinished:(SKPaymentQueue *)queue

Появляется только предупреждение, чтобы вы могли ввести свой Apple ID ... и ничего не произошло?

Я установил точку останова, но она не остановится, как сказал пример.

Есть идеи, что не так с моим кодом?

Ответы на вопрос(2)

Ваш ответ на вопрос