This is my code:
NSURL *url=[NSURL URLWithString:@"http://www.engadget.com"];
NSString *webPage=[[NSString alloc]initWithContentsOfURL:url
encoding:NSUTF8StringEncoding error:nil];
In the webPage string I got an html page of the link. In that string there is lot of tags and text. I want to take only body of the text without any tags.
I want to display that text into my UITextView. How can I do that?