Privacy Policy URL

How do I add a privacy policy URL to an app?

You could add a link to you settings page.

Link | Apple Docs

Link("View Our Terms of Service",
      destination: URL(string: "https://www.example.com/TOS.html")!)
Link("Visit Our Site", destination: URL(string: "https://www.example.com")!)
    .environment(\.openURL, OpenURLAction { url in
        print("Open \(url)")
        return .handled
    })

If you are using Subscriptions or In App Purchases you could also display this link on the product page.

Privacy Policy URL
 
 
Q