iphone Call from the pdf on the webView - iphone

I want to open a pdf file in the webview
this pdf file contains lots of telephone numbers,
I want to do call that perticuler numbers when i click the one.
How is this possible?

This is only possible if the phone numbers in the PDF are hyperlinks like: tel:+3153148154

Related

Flutter - preview file

i would like to upload file in a flutter app.
When I obtain io.file, i would like to display a preview / thumbnail (for example, the first page of a word or pdf file ; first sheet of an excel file ...)
My question doesn't concern images
Thx

Generate a PDF out of a HTML String and Display it in Swift

I want to generate an PDF, from an HTML-String and display it. Further I want to share this PDF Document, with a UIActivityViewController. Is this possible, and how can I do that (if its possible).
Thanks for your time and maybe for your help
Boothosh

Create And Display A PDF File In Ionic 3

How to create PDF file and display as per our design.
customize PDF layout and add image and table create in PDF file.
i have send image this type i want to create pdf file .
Here is plugin called pdfmake. It will help you to create pdf of images. You can customise many of things for creating pdf like page size, table, fonts etc.
Following are some of the tutorial which will help you to guide :
https://medium.com/#rakeshuce1990/ionic-how-to-create-pdf-file-with-pdfmake-step-by-step-75b25aa541a4
https://ionicacademy.com/create-pdf-files-ionic-pdfmake/
I have used it in my project to creating pdf of images and working properly, so may it will help you.

Develop ePub file reader in iOS 5

I want to develop ePub & PDF reader for iOS devices.
For PDF reader , I can display PDF in Web View. So I don't have any problem with PDF.
For ePub files, my idea is
1) Download epub files from server & extract it to Documents directory as per requirement.
2) Parse extracted files & display it.
3) Once app closed , delete extracted files from Socuments directory.
Required functionality :-
1) Increase / Decrease Font size & brightness
2) Bookmark
3) Left & Right Swipe gesture OR Curl effect like changing pages from book
4) Orientation suuport
5) Display contents from Book (List)
6) SEARCH Functionality
7) Optionally display Page number
My questions are :-
1) Does any one know a good iOS library for ePub reader other than AePubReader?
2) I saw this link for for RMSDK. Anybody know about this ? Does it support iOS ?
3) Where should I display extracted contents in order to manipulate the font size & brightness ? In WebView or TextView ?
Any knid of help is appreciated. Thanks
Use UITextView to load text by parsing each html/xhtml file. Use page view controller to get page navigation style

UIView to Editable PDF. Possible?

I am trying to convert a UIView to pdf (iOS). I managed to do it by using renderInContext. However, it captures the whole UIView as an "image" which is not really what I want. The questions and answers I found on stackoverflow gives me the same result of using the renderInContext.
I want to convert the whole UIView (with my textfields etc.) to editable pdf. Which means the pdf file after converting still enables the user to edit what was already written in the textfields in the pdf (the pdf file will be sent to email and edited in the computer).
Is this possible? If so, how can I go about doing this?