We know that on iOS 8 and above, we can direct users to the Settings app by using
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
When this method is called, the user will be directed to our own app's settings page within the Settings app.
Is it possible to direct the user to a different page within the Settings app? For example, the Settings -> Touch ID & Passcode page within the Settings app.
If directing to a specific page is not possible, is it possible to at least direct to the home page of Settings app, instead of the settings page of our own app? Thanks in advance.