Смотрю есть такой метод:
SwiftyStoreKit.restorePurchases(atomically: true) { results in
if results.restoreFailedPurchases.count > 0 {
print("Restore Failed: \(results.restoreFailedPurchases)")
}
else if results.restoredPurchases.count > 0 {
print("Restore Success: \(results.restoredPurchases)")
}
else {
print("Nothing to Restore")
}
}
Но я так понимаю он возвращает все транзакции которые происходили, т.е. regardless of whether they are expired or not
Как дальше быть то? Что делать после этого вызова ?
чек возьми, там все будет
Обсуждают сегодня