Reputation:
How can I turn Location Services back on from the actual app when someone declined the first time. I have an option to turn it off or on.
Upvotes: 0
Views: 1232
Reputation: 4085
You can only prompt them to the screen to turn on location services like so:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"prefs:root=LOCATION_SERVICES"]];
Upvotes: 3