I'm trying to utilize a class from the Google Toolbox for Mac libraries, for unescaping HTML text. Specifically, I'm using GTMNSString+HTML.h and GTMNSString+HTML.m.
Where I'm trying to escape the text, I'm doing this:
NSString *escaped = [ gtm_stringByEscapingForHTML:_item.body ];
But when I try to compile I'm getting an error:
'gtm_stringByEscapingForHTML' undeclared (first use in this function)
I understand that this means I need to declare something earlier in my file, but I'm not sure where, and beyond that what the syntax would be.
Any help is greatly appreciated, thank you.