How do I add a privacy policy URL to an app?
Privacy Policy URL
You could add a link to you settings page.
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.