【发布时间】:2011-02-24 13:40:23
【问题描述】:
是否可以在 UIWebView 中使用 WebView 顶部的 Open in Books 和 Open With 选项在 UIWebView 中显示 PDF?我不知道该怎么做。
谢谢
【问题讨论】:
是否可以在 UIWebView 中使用 WebView 顶部的 Open in Books 和 Open With 选项在 UIWebView 中显示 PDF?我不知道该怎么做。
谢谢
【问题讨论】:
将UIDocumentInteractionController 放在网页视图的顶部,它将允许用户在 iBooks 中打开 pdf。
【讨论】:
NSString * path = [[NSBundle mainBundle] pathforResource:@"ResourceName" ofType:@"pdf"] ; 或路径也可以是任何 http url。
NSURL * url = [NSURL fileURLWithPath:path];
NSURLRequest * request = [NSURLRequest requestWithURL:url];
UIWebView * webView = ....;
[webView loadRequest:request];
这应该在 webview 中显示 pdf。但似乎您要求在其他应用程序中打开 pdf,这部分我不完全理解。你能解释一下吗?
【讨论】: