As already mentioned in other answers, the data in your xml is inside the CDATA block - this means that when you get the contents of the tag, the XML parser will not be able to get rid of the 'By:' bit for you - as far as this is concerned, all this is just text .
, HTML UIWebView ( UILabel ..), , "By:". -
NSString *cssString = @"<style type='text/css'>span.by { display:none; }</style>"
NSString *html = [NSString stringWithFormat:@"<html><head>%@</head><body>%@</body></html>", cssString, descriptionString];
[webView loadHTMLString:html baseURL:nil];
descriptionString - <description> xml.
, xml!
xml, NSXMLParser .