Open PDF on iOS mobile using Xamarin - C#

Asked

Viewed 171 times

0

Does anyone know how to open a PDF that is in the local iOS folder using the Xamarin platform? I have researched and tested several ways, but none works.

1 answer

0

A practical way to open a . pdf is by using a UIWebView:

var url = new NSUrl(caminhoPdf);
var request = new NSUrlRequest(url);

webView.LoadRequest(request);

Browser other questions tagged

You are not signed in. Login or sign up in order to post.