4

Is there a way to open the iPhone's Subscriptions Management window by clicking on a button within the app?

I know you can open the app's settings page with

UIApplication.openSettingsURLString

Is there something similar to access the Subscriptions module in order to manage in-app subscriptions?

cesarcarlos
  • 1,271
  • 1
  • 13
  • 33

1 Answers1

4

To open subscription settings, use this URL:

let url = URL(string: "https://apps.apple.com/account/subscriptions")
UIApplication.shared.open(url!, options: [:])
Ethan Allen
  • 14,425
  • 24
  • 101
  • 194
Witek Bobrowski
  • 3,749
  • 1
  • 20
  • 34