【发布时间】:2014-11-05 07:02:10
【问题描述】:
我想一次在 web 视图中显示一些文本和 pdf 文件。
有没有可能..
我尝试过使用
NSString *htmlString = [NSString stringWithFormat:@"<p>some text which i need to show above pdf</p><img src=\"file://%@\">",@"FR.pdf"];
NSString *bundleP = [[NSBundle mainBundle] resourcePath];
NSURL *fileURL = [NSURL fileURLWithPath:bundleP];
[pdfWebView loadHTMLString:htmlString baseURL:fileURL];
这显示文本,并且只显示pdf文件的第一页,..
提前致谢
【问题讨论】: