I've recently discovered the awesome iOS5 custom Settings URL Scheme, which can be explained in detail at this great website:
http://handleopenurl.com/scheme/apple-settings-app
I've found this to work, directing the user to the Settings app from my application:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General"]];
But cannot seem to route directly to the Restrictions path via the path parameter:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General&path=Restrictions"]];
Has anyone found documentation on this or been able to make this work? Any insight would be greatly appreciated. I'm trying to take the user to enable in-app purchasing, and would rather not have the user manually click on Restrictions (not very obvious).
Thanks!