Is it possible to implement an e-book created using iBooks Author inside the application?

I would like to embed an e-book created using iBooks Author inside the application. Does anyone know if this is possible?

If not, is it possible to add a link to my application that opens the e-book?

+5
source share
2 answers

You can export from the author iBooks in PDF format, and then create a wrapper application in which this PDF file will be displayed inside the application, but the experience will be suboptimal.

0
source

EPUB to pdf PDF. , , XCODE.

pdf - UIWebview:

NSString *path = [[NSBundle mainBundle] pathForResource:@"document" ofType:@"pdf"];
NSURL *targetURL = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];
0

All Articles