i got an object with contents of html markup in it, for example:
string = @\"This is wonderful
Also some ‘ entidies &am
You should have a look at the Three20 project which includes a class TTStyledTextLabel
which allows you to render HtmL-Code and even activates links.
TTStyledTextLabel *htmlLabel = [[[TTStyledTextLabel alloc] initWithFrame:self.contentView.bounds] autorelease];
htmlLabel.userInteractionEnabled = YES;
[aView addSubview:htmlLabel];
htmlLabel.text = [TTStyledText textFromXHTML:htmlText];