I use code for in-app purchase based on this answer. But I ran into some strange bugs. For example:
I have FirstViewController
with locked content and PurchasesViewController
with purchase buttons. When I click on purchase button in PurchasesViewController
, confirm purchase and wait several seconds for notification about the purchase is successful. Next I go back to FirstViewController
and see that content unlocked. In this example all works fine. But...
Problem:
If I click on purchase button in PurchasesViewController
, confirm purchase and without waiting for the notification, I go back to FirstViewController
and receive a notification there. My content not unlocked. Even if I restart the app content not unlocked. But if I click on restore purchases
button all start works fine and locked content will be unlocked.
This problem can be confusing to the user. So I want to lock the interface and show the activity indicator
until the user receive a notification about the purchase is successful. And after user click "Ok" in notification windows I want to unlock interface and remove activity indicator
. But how to do it? Where and when I should call lock interface function?