Before I asked this question I had try:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@\"prefs:root=Privacy&path=LOCATION\"]];<
Thanks to this guy. I figure out this URL Scheme Prefs:root=Privacy&path=LOCATION
is only available in Today Widget, but no use in containing app.
In Today Widget, you can try this:
[self.extensionContext openURL:[NSURL URLWithString:@"Prefs:root=Privacy&path=LOCATION"] completionHandler:nil];
More about system URL Schemes, you can see here.
This all I got. Hope it will help you.