iOS使用Google Drive Doc View在WebView中显示pdf

时间:2013-12-31 09:09:06

标签: ios iphone pdf uiwebview google-document-viewer

我探索了很多网站并获得了以下指令,以非常漂亮的方式显示了pdf文件。

[_pdfViewer loadRequest:[NSURLRequest requestWithURL: [NSURL URLWithString: @"http://docs.google.com/gview?embedded=true&url=http://gamersgold.com/wop-ios/uploads/eula_terms.pdf"]]];

但是,此网址主要用于Android应用:

http://docs.google.com/gview?embedded=true&url=

使用时,Google Docs标题会显示在页面底部。使用这种方法会导致我的应用程序被App Store拒绝吗?

在Apple提供或批准的iOS中是否有其他方法可以实现此目的?

1 个答案:

答案 0 :(得分:0)

使用此http://docs.google.com/gview?embedded=true&url=不会拒绝您的应用。

如果您有疑问,仍然没有必要使用此URl。您可以直接编码如下,它将在UIWebView对象中显示PDF。您可以说这是一种替代方案,实际上是在UIWebView中显示PDF文件的默认方式

[_pdfViewer loadRequest:[NSURLRequest requestWithURL: [NSURL URLWithString: @"http://gamersgold.com/wop-ios/uploads/eula_terms.pdf"]]];}