3

Based in this link.

Works perfect but me in old ios versions, but in ios 10 not works.

This is my code:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"music://"]];

I'm testing with

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"music://"] options:@{} completionHandler:nil];

but it does not work

Community
  • 1
  • 1
jose920405
  • 7,982
  • 6
  • 45
  • 71

1 Answers1

0

Just add Privacy - Media Library Usage Description in .plist. That solves the problem

jose920405
  • 7,982
  • 6
  • 45
  • 71
  • For more info on all iOS10 necessary permissions. check this one: http://stackoverflow.com/a/38498347/3670829 – ghashi Oct 31 '16 at 23:15