Iphone Open With in UIWebView

Can I show PDF in UIWebView with the Open in Books and Open With options at the top of the WebView? I do not know how to do that.

thanks

+4
source share
2 answers

Put a UIDocumentInteractionController on top of the web view, this will allow the user to open the PDF file in iBooks.

+2
source

NSString * path = [[NSBundle mainBundle] pathforResource: @ "ResourceName" ofType: @ "pdf"]; or the path can be any http address too.

NSURL * url = [NSURL fileURLWithPath: path];

NSURLRequest * request = [Request NSURLRequestWithURL: url];

UIWebView * webView = ....;

[webView loadRequest: request];

This should show pdf in webview. But it seems that you are asking to open the pdf file in another application, part of which I did not fully understand. Can you explain?

0
source

Source: https://habr.com/ru/post/1341143/


All Articles