Link to app manage subscriptions in app store
app-store, in-app-purchase, ios, newsstand-kit, openurl
Solution
Using a URL
According to Apples article Handling Subscriptions Billing and WWDC 2018 Session 705 the following url can be used to link to the manage subscription page:
`https://apps.apple.com/account/subscriptions`
Using StoreKit/SwiftUI (iOS 15+)
UIKit: Use StoreKits `showManageSubscriptions(in:)` (Documentation).
SwiftUI: Use SwiftUIs modifier `manageSubscriptionsSheet(isPresented:)` (Documentation).
Problem
Currently with In app purchase the only way to cancel an auto-renewing subscription is to do the following with the device: Settings > Store > View my account > Manage my subscription Is it possible programmatically to link directly to the Manage my subscription page in the app store? I know I can open the app store via something like ``` NSURL *url = [NSURL URLWithString:@"itms-apps://itunes.apple.com"]; [[UIApplication sharedApplication] openURL:url]; ``` I have seen other apps do this but I can't seem to figure out how.