I'm building my first Swift app, and I'm working with in app purchases with storeKit2.
I find a bit confusing the workflow with this tool, and I still don't really get how subscriptions work.
Is there any method on StoreKit Transaction object to check if a subscription has been cancelled (not renew on expire date), or I have to check via currentEntitlements?
The only way I find to check this via currentEntitlements, is to check if the Transaction exists and today's date is < than transaction.expirationDate.
Can anyone tell me if there is any workflow to check the status of Transactions in Swift StoreKit?