GJain
GJain

Reputation: 5093

iOS - How to make url link clickable in info.plist value

I have a Info.plist key/value pair contacts permission. I want to have a URL in the value.

What I want is the URL to be clickable/tap when the alert is presented asking for contacts permissions.

How can make it clickable?

Text looks like:

This app protects user privacy. Please check www.example.com/Privacy.

Upvotes: 0

Views: 618

Answers (2)

aircraft
aircraft

Reputation: 26896

The dialog for asking user's premission is not able to customize, so you cannot add anything to the system alert, you cannot put the link to the permission alert.

EDIT

you can edit the describe value in the info.plist

Upvotes: 1

rmaddy
rmaddy

Reputation: 318824

This isn't possible. The privacy message is just a string that iOS shows in the privacy alert. Your message should explain (very briefly) why it needs to access to the specific resource.

Don't state that your app protects user privacy. Explain why your app needs to access the user's contacts.

The user already has access to your app's privacy page from your app's description in the App Store.

Upvotes: 1

Related Questions