I can able to implement the annotation on pdf file and export it.
But in the case of doc,xls and ppt i couldn't able to apply the annotation using objective c ?
So i had plan to convert the (.doc,.xls,.ppt) files to pdf format.
Using UIKit or Quartz framework possible to implement ?
You can do it with google docs API.
I have implement this.
Just try it it is very easy to implement...
Second Option : Use following, I found it from here.
(1) Use
UIWebView
to display the content of the PPT. The well formed (!) HTML allows you to parse it. Get the html using(2) Count the number of
div class = 'slide
to get the slide count(4) You need to parse the HTML to get the styles and
div
using the below code(5) Get all the styles
(6) Concatenate all the styles from step 5 with
div
tag content. Define aNSMutableArray
variable to to store all slides with styles for future reference. DefineNSMutableArray *slides
to store all the slidesHope this helps