So i am working on a rss feed parser for a clients wordpress.
I am making the description in the tableview that selects the articles that are pulled from the feed. This is the description being called upon.
Takes out the html that is pulled from the feed.
and
Corrects grammar.
Both of the api's can be found here:
https://code.google.com/p/google-toolbox-for-mac/source/browse/trunk/
GTMNSString+XML
GTMNSString+HTML
Both work by them selves but i need the data to go through both of them to get the final product i dont know how i am supposed to write that new line
I am making the description in the tableview that selects the articles that are pulled from the feed. This is the description being called upon.
Code:
NSString* description = [NSString stringWithFormat:@"%@...", [self.description substringToIndex:100]];
description = [description gtm_stringBySanitizingAndEscapingForXML];
description = [description gtm_stringByUnescapingFromHTML];
Code:
description = [description gtm_stringBySanitizingAndEscapingForXML];
and
Code:
description = [description gtm_stringByUnescapingFromHTML];
Corrects grammar.
Both of the api's can be found here:
https://code.google.com/p/google-toolbox-for-mac/source/browse/trunk/
GTMNSString+XML
GTMNSString+HTML
Both work by them selves but i need the data to go through both of them to get the final product i dont know how i am supposed to write that new line