I want to create a PDF file in iOS; there should be one table in the PDF, which is filled from one array. I already searched on Google, but didn't succeed. Any help is appreciated
feedback
|
|
Something like this routine to render the text:
And the following code snippet which calls it, assuming you have the context and any fonts etc created and in the appropriate variables. The following loop simply builds up the text line by line into an NSMutableAttributedString which you can then render:
Now you have your array written out with newlines to one NSMutableAttributed string you can render it, depending on your text you might want to render it out in a loop until the rendered location matches your text length. Something like:
The above code will need quite a bit of adapting I'm sure as it's hacked out of a project of my own so some variables (like the frame setter) won't exist and you need to close off the PDF context and release variables etc. Note how mainString is used to determine when the text has been rendered out. It should give a clear enough indication of how to loop around an array or any other group to render an arbitrary length of text into a document. Slight modifications to the while loop and the one render before entering it will let you render text out in multiple columns too. | |||
|
feedback
|
|
Hey this tutorial must help u in creating pdf in ios http://www.raywenderlich.com/6581/how-to-create-a-pdf-with-quartz-2d-in-ios-5-tutorial-part-1 | |||
|
feedback
|
|
You can use http://www.ioslearner.com/generate-pdf-programmatically-iphoneipad/ which is simple to implement. It contains simple functions which could be easily edited. Just change the function as per your requirement and pass the image and Rect. nJoy Coding ... :) | |||
|
feedback
|