I am having issues with parsing the XML content and displaying it in the ui. XML has a content for an element that is like this
<fullDescription>3.2GHz PowerPC CPU ATI GPU 512 MB 700 MHz GDDR3 RAM 1x Wireless Game Controller 3x USB 2.0 port XBOX Live ready 20GB HDD HD-AV-Kabel für High-Definition Output (720p, 1080i) inkl.</fullDescription>
however after I parse it (thru TBXML) I am getting the string as
3.2GHz PowerPC CPU  ATI GPU  512 MB 700 MHz GDDR3 RAM  1x Wireless Game Controller  3x USB 2.0 port  XBOX Live ready  20GB HDD  HD-AV-Kabel für High-Definition Output (720p, 1080i)  inkl.
I have tried number of solutions already mentioned to clean up the special characters e.g HTML character decoding in Objective-C / Cocoa Touch and even modified the method to include "Â" , double space nothing seems to work..
I could not use the Github NSString category for HTML since that code does not seem to be ARC compatible and I am getting all sorts of errors when I try to use it in my project.
Can someone help me in the right direction.. pulling my hair out on this for a while :-(..i figure there has to be a simple way to do this in a generic way.