Download pdf throgh web view how to do?
In my app i have shown pdf from the remote server using webview and i have to add a action to download the pdf and 开发者_运维技巧save it into iPhone how to do...Using Php i tried to force download pdf,which works in browser(desktop) not in device
Can any one help me...
The (unjailbroken) iPhone's Safari cannot access the local file system, so it's impossible to download anything.
(The iPad, OTOH, may support it.)
use the download attribute in slide your a tag
<a href="content/file.pdf" download > pdf link </a>
<a href="content/file.doc" download > doc link </a>
精彩评论