Reputation: 17428
Is it possible to open the iPod app from within my app? If so, how? I don't want to go anywhere in specific in the app, I just want it to open as it normally does. What is the iPod app URL?
Upvotes: 5
Views: 477
Reputation: 12405
Update: As Bart pointed music is the keyword and for everything else you can refer this link for the list of all the applications you can launch and the code required to do so ... http://www.wiki.akosma.com/IPhone_URL_Schemes
Upvotes: 1
Reputation: 1426
This works on my iPhone4 with iOS 5.0:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"music://"]];
Upvotes: 4