有人可以告诉我是否有任何控件或框架会将epub文件显示为iphone应用程序?
NSString* filePath = [[NSBundle mainBundle] pathForResource:@"LittleBoPeep-ANurseryRhymePictureBook" ofType:@"epub"];
UIWebView* wv = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
[self.view addSubview:wv];
[wv loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:filePath]]];
答案 0 :(得分:2)
ePub文件基本上使用HTML文件(以及其他文件)来编译您在iBooks中看到的内容。您可以解压缩ePub文件并在UIWebView中显示HTML文件,或者您决定使用它的任何其他方式。