Store
the product that was selected from the app store.
Instance Method should
shouldPurchasePromoProduct(_:defermentBlock:)
Called when a user initiates a promotional in-app purchase from the App Store.
Framework
- Revenue
Cat
Declaration
@objc func shouldPurchasePromoProduct(_ product: StoreProduct , defermentBlock: @escaping DeferredPromotionalPurchaseBlock )
Parameters
product
Product
Discussion
If your app is able to handle a purchase at the current time, run the deferment block in this method.
If the app is not in a state to make a purchase: cache the defermentBlock, then call the defermentBlock when the app is ready to make the promotional purchase.
If the purchase should never be made, you don’t need to ever call the defermentBlock and Purchases
will not proceed with promotional purchases.