Is it possible to open the Health app programmatically, like one can do with the Settings app?
If it's not possible to open the app's Apple Health permissions screen directly, can we at least open the main Apple Health screen?
Edit: I know that I cannot request permissions again - just like with other things like Camera access, etc. However, if the user refuses Camera permissions, I can direct them to the Settings page directly where they can change those permissions.
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
[[UIApplication sharedApplication] openURL:url];
Is there such a thing for Health App?