I have this interface from IB. As you can see in ‘Details’ UITextfield there are a lot of HTML code inside it.

I have a PHP server behind so that I can make it in the back-end too. What is the best way to perform this?
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.
Display it in a UIWebView with a transparent background, that way you can have all of your HTML tags still functioning. Just make the UIWebView the same size as your UITextView and put it in the same spot!
When you are loading your HTML string into your webView use this code for a transparent background.
And also make sure you (in the xib file) set the webView’s background itself to have 0% alpha and toggle the “opaque” box…
Lastly don’t forget to set the delegate in your xib file and add the
<UIWebViewDelegate>to your .h file.