I have a requirement to Open up my iOS App Specific Location Settings. I am aware that we can Open the General Location Settings through the below:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"]];*
I have two Questions:
Is the above valid and the right as per Apple guidelines (or) should we just Open up the Settings App and allow the user to change the settings?
My requirement is to open my App's Specific Location Settings - the one that shows "Always", "While Using App", "Never", so that the user can modify the same. Is this possible
Thanks in advance.