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.
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.
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 c# ios mobile pdf xamarin
You are not signed in. Login or sign up in order to post.