I parsed my xml by using NSXMLParser and I got the data of like <title>,<details>,<subtitle> now I just want to publish this data on the UIWebView.
How can I achieve that?
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 you’ve parsed your data already, you have it stored in a set of variables, right?
You could substitute it into some HTML using
stringWithFormat:, and then display it in a web view withAlternatively, instead of parsing yout XML at all, you could just use XSLT to style it directly: see this answer if you want to go that route.