I followed the instructions here to add a library for HTMLParser.
However, I get the following error:
Undefined symbols for architecture armv7:
"_OBJC_CLASS_$_HTMLParser", referenced from:
I read many answers in stackoverflow but couldn’t find a solution.
I develop for iphone and ipad and using xcode 4.5
you use ARC you say but HTMLParser does not, so if you’re not getting errors tring to compile it, it is not included & compiled & therefore missing at link time.
see: How can I disable ARC for a single file in a project?