Is it possible to programmatically open the Health application, how can this be done using the Settings application?
If you cannot open the Apple Health permissions app screen directly, can we at least open the Apple Health main screen?
Change I know that I cannot ask for permission again - just like with other things like access to the camera, etc. However, if the user refuses camera permissions, I can directly redirect them to the settings page where they can change these permissions.
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; [[UIApplication sharedApplication] openURL:url];
Is there such a thing for a health app?
source share