Hi,
I would like a button in my app to take the user directly to the settings app. To be more precise: Settings > Safari > Content Blockers.
I've been able to link as deep as 'Safari', but not as deep as 'Contect Blockers'.
This is what my code look like now ( does work ):
UIApplication.sharedApplication().openURL (NSURL(string:"prefs:root=SAFARI")!)What I tried ( does not work ):
UIApplication.sharedApplication().openURL (NSURL(string:"prefs:root=SAFARI&path=ContentBlockers")!)UIApplication.sharedApplication().openURL (NSURL(string:"prefs:root=SAFARI&path=CONTENT_BLOCKERS")!)This SO threat lists a few possible URLs for linking to defferent settings screens:
Is there an official list of URLs? If not, has anyone found the right URL for linking directly to the Content Blockers screen?
Thanks! Jonatan