-2

I am a newbie in iPhone development. I am planning to do a PDF application for iPhone. The functionality is:

  1. User will type their input in a text field (which is going to be the content of the PDF file).
  2. I have to modify the PDF file through code while saving (paragraphs, tables, bullets etc).
  3. User can save it in their own name.
  4. User can send the PDF file as attachment of MFMailComposer.

So I have searched and got many links. However I didn't find any leading details to create and modify a PDF file in iPhone/iPad.

Can anyone please provide me a good reference to do this. Are there any alternatives to do this?

jscs
  • 63,694
  • 13
  • 151
  • 195
Midhun MP
  • 103,496
  • 31
  • 153
  • 200

3 Answers3

2

I've used this reference: https://developer.apple.com/library/ios/#documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/dq_pdf/dq_pdf.html

It contains theoretical explanations and source code examples

igoris
  • 1,476
  • 10
  • 20
1

Please use the below link to download sample apps for PDF Reader/Viewer in iOS

PDF Reader/Viewer in iOS

Also please look at detail about pdf creation, manipulation etc in below links

developer.apple: PDF Document Creation, Viewing, and Transforming

Fast-and-lean-pdf-viewer-for-iphone

Community
  • 1
  • 1
Shamsudheen TK
  • 30,739
  • 9
  • 69
  • 102
0

If you were doing a Phonegap app I'd say got for jsPDF, which would enable you to create (basic) PDF files in Javascript. I don't do Obj-C, but a quick look on SO provides good links.

Community
  • 1
  • 1
dda
  • 6,030
  • 2
  • 25
  • 34