
Hi, I am looking for multi-column table and also want to send that table in email.
Is there any library which can help me ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If see two methods to do this, none of which are “straight out of the box”.
method 1. Use a UIWebView, build your html as a string and load it right into the UIWEbView using the..
loadHTMLStringmethod. this way, you have a handle on your html, and can directly write the same html to an email. having said this, its not the method that I would use. IOS, is about a rich client experience.. and UIWebView is… well.. a web view…so.. method 2.
roll your own custom table as posted by Aravindhanarvi.. then when you want to send an email… render your view to an image.. and add that image to your email.
here is the code to render a view as an image..