My app imports music from the Music app
via MPMediaPickerController
. A modal will appear even if the user has deleted the music app. However, if it was deleted in iOS13, the modal no longer appears. So I want to check if the Music app
is installed. I tried the following code and confirmed that YES is returned even if it is not installed.
- (BOOL)isInstalledMusicApp
{
NSURL *url = [NSURL URLWithString:@"music://"];
return [[UIApplication sharedApplication] canOpenURL: url];
}