StoreKit2 provide great API AppStore.showManageSubscription(in:)
to downgrade, upgrade or cancel the user's subscription, however, can the App detect the cancellation in App? (without server to server notification)
I understand the upgrade and downgrade can be detected in Transaction.updates
, but I'm not sure about the cancellation.
I want to update my label's text from Next billing date: \(date)
to Expires \(date)
if the user cancels the subscription in showManageSubscription(in:)
sheet.
Can I implement that?