How can I open a book on iBooks? I tried the following code, that works, but asks the user to choose an application to open the file:
self.docController = [U
just use this
NSURL *url = [NSURL URLWithString:stringURL]; [[UIApplication sharedApplication] openURL:url];
Where stringUrl is your filePath, with itms-books: at the beginning
filePath
itms-books:
See this related question How do I launch iBooks e-reader programmatically on iPad?