How do we open Settings using the UIApplication.sharedApplication()
What URL should I pass in?
I used the UIApplicationOpenSettingsURLString
but it opens directly to the Application specific Settings page. but I would like to have it open the first level of the Settings app.
Or even better, I would like it to open directly to the page where user can enable the Location Services on their phone.
the codes below opens directly to the Application specific Settings page.
UIApplication.sharedApplication().openURL(NSURL(string: UIApplicationOpenSettingsURLString)!);