0

Possible Duplicate:
How do I launch iBooks e-reader programmatically on iPad?

While this question is answered on how to launch iBooks from an app open iBooks from my app

But I need to launch a specific iBook from an app. It should open iBooks and then open the specific iBook. Can this be done?

Community
  • 1
  • 1
BX69
  • 421
  • 5
  • 18

1 Answers1

0
NSString *stringURL = @"itms-books:";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];

NSString *stringURL = @"itms-bookss:";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];

As explained on: http://wiki.akosma.com/IPhone_URL_Schemes under the "iBooks" entry.

Kheldar
  • 5,361
  • 3
  • 34
  • 63