Ok let me try to make it a better question.
I have a tableViewController in my app containing some info that the user would like to email someone with that data from the tableview.
I could retain an array with that information.
The tough part of the question is how do i populate the body of the message with the data from my tableview using objective-c language ?
Do I have to make a huge string containing all the html code ? Or is there a better/easier way around it ? Even if it is a simple looking table just so the client will send that out to someone.
I guess any solution/advice could be a great waypoint for me to know how should i work with this.
I freaking nailed it !
If you guys ever want to compose an email having the data from your UITableViewController
here’s how i made it. Just remember to import your data header file…
This one was a huge step for me and it is actually very useful if you want to create interesting (basic) tools in your app.
Thanks to everyone in this quintessential website for objective-c programmers.
Andthis is the result you get. Simple but a good way to start.