I\'m parsing an RSS feed with NSXMLParser and it\'s working fine for the title and other strings but one of the elements is an image thats like
You can use
- (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString alloc] initWithData:CDATABlock encoding:NSUTF8StringEncoding]; }