I'm developing a Flex Mobile Project for iPad (iOS) and I need to open a PDF document in the native PDF reader.
I think I need integrate with a Native Extension.
Someone did something like that?
Thanks for your suggestions.
Have you tried this?
var myFileName:String = 'myFile.pdf';
var localFile:File = File.documentsDirectory.resolvePath('myAppFolder/'+myFileName);
localFile.openWithDefaultApplication()
Maybe this can help you!
Related
I am trying to open pdfs in my application using ibooks but i could not find any solution for this. I am using Appcelerator for this. Please share code with me.
You can either use the DocumentViewear (http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.iOS.DocumentViewer)
or a Webview to display a PDF.
When you have opened the PDF in the DocumentViewer the user can decide
With the action button to open the PDF in the reader he wants.
To open other apps you you have to use URL schemes
(http://wiki.akosma.com/IPhone_URL_Schemes#iBooks):
Titanium.Platform.openURL('ibooks://');
Does anyone know if its possible to create PDF files in Xamarin for ios? I know there is a library called Apitron, is there anything else besides this?
Thanks
You can go to the Xamarin Component Store to search for PDF libraries. Some are free, some require a one-time purchase. You can visit the store here.
Since Xamarin.iOS provides bindings to the native APIs for iOS development, you could probably use the instructions from Apple's documentation to infer the same calls in your Xamarin.iOS app.
Need to check weather "HealthTap" is developed in phone gap or not?
I am seeing "HealthTap" is featured Application on Phonegap website but when i extracted IPA file, it doesn't contain phonegap.js or cordova.js.
Can you please help to detect weather it is developed in Phonegap or native?
Yes, it is fourth on this list: http://www.rishabhsoft.com/blog/best-phonegap-apps
Along with the Wikipedia app, DHS Program, Paylution and TripCase.
I am currently working on an app that requires data from an Excel document.
I am looking for a way to display the information from Excel into Xcode.
Is they a way to do this, and if so, how?
Any help will be greatly appreciated!
Thank you,
Dave.
You need a 3rd party IOS SDK check : http://www.libxl.com/download.html
I'd like to integrate a FastPdfKit Reader into my PhoneGap application. That is, the PDF reader should be opened within the PhoneGap app, so that the application-related navigation is still visible.
Where do I best start?
Do you know about any publicly available code that gives an example on how to achieve this?
It sounds like what you are looking for is creating a PhoneGap plugin.
http://wiki.phonegap.com/w/page/36752779/PhoneGap%20Plugins
Here are some tutorials on making plugins for PhoneGap:
http://hiediutley.com/2011/04/15/phonegap-tutorial-series-6-writing-your-own-plugin/