Open PDF on iOS mobile using Xamarin - C #

0

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.

    
asked by anonymous 07.07.2015 / 15:17

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);
    
26.08.2015 / 13:19