Unity Add-ons
PDFReader v.1.29
This plugin provides iOS native API UIDocumentInteractionController. Now you can add documentation to your projects, just like you do on your desktop. View files from local folder or remote address. In addition you can open files in third party applications like Pages, iBooks, Evernote and other applications supporting file format.
New:
- Compatibility with Vuforia plugin
Features:
- Now you needn't add PDFs files to Xcode project, import files directly in Unity
- Reliably viewing PDF files using native iOS code (UIWebView or UIDocumentInteractionController)
- Support iOS 6.0 or higher
- Open files in third party applications
- Supports Android methods

01
PDFReader.OpenDocInMenu (string docPath, bool onlyThirdPartyApp)
Variable docPath - string, gets path to document. Variable onlyThirdPartyApp - bool, if value = true, open document only in third party application, else in third party applications + native iOS applications. Method is used to open .pdf, .doc , .txt and other formats that support applications on your device.
02
PDFReader.OpenDocInWebViewLocal (string docPath, string docTitle)
Variable docPath - string, gets path to document. Variable docTitle - string, sets title of pdf file. Method is used to open only local .pdf files in UIWebView from device.
03
04
05
PDFReader.OpenDocInWebViewRemote (string docTitle, string docRemoteURL)
Variable docTitle - string, sets title of pdf file. Variable docRemoteURL - string, gets url address of pdf file. Method is used to open only remote .pdf files in UIWebView.
PDFReader.OpenDocInWebViewRemote (string docRemoteURL)
Variable docRemoteURL - string, gets url address of pdf file. Method is used to open only remote .pdf files in android WebView or supported applications.
PDFReader.OpenDocInWebViewRemote (string docRemoteURL, bool useGoogleDocs)
Variable docRemoteURL - string, gets url address of pdf file. Method is used to open only remote .pdf files in android WebView using Google Docs Service.
