I have an iOS app, in which the user can enable/disable location tracking permission, so, on clicking a button in my app, I have to navigate the user to the location access page in system preference app,
I went through lots of answers, which suggested me to use
UIApplication.shared.open(URL(string: "App-prefs:LOCATION_SERVICES")!)
but they were all able to move to default settings, is it possible to move to a specific page like below image, i.e Settings -> Privacy -> Location Services -> My_APP ->
Thanks in advance..