cesarvr / pdf-generator

Cordova plugin to generate pdf in the client-side
MIT License
107 stars 61 forks source link

How can I access the PDF? #1

Closed webguy262 closed 8 years ago

webguy262 commented 8 years ago

I'm a bit new to app development so bear with me! How would I access a PDF created with type:share? Where does it go in the file system? Should I get a popup with sharing options, like Save PDF to iBooks? Thanks!

cesarvr commented 8 years ago

Hi, yes if you use the type:share option the User (IOS share dialog) should take care of the final destination of the PDF, if you want control over the PDF generated you should use type:base64. In both cases the API delegate the final treatment of the file to user(type:share) or programmer(type:base64). Cheers.