URL for linking to specific Settings.app screen

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:

http://stackoverflow.com/questions/8246070/ios-launching-settings-restrictions-url-scheme/8246814#8246814


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

URL for linking to specific Settings.app screen
 
 
Q