Does anyone know how I can open a PDF that is in the local iOS folder using the Xamarin platform? I've researched and tested it in many ways, but none of it works.
Does anyone know how I can open a PDF that is in the local iOS folder using the Xamarin platform? I've researched and tested it in many ways, but none of it works.
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);