T teguh123 macrumors member Original poster Mar 22, 2011 62 0 May 10, 2011 #1 XML as we know, encode things like & into something like & Obviously user want to see & rather than & Now what's the best way to change & into &? URLDecode? In objective C?
XML as we know, encode things like & into something like & Obviously user want to see & rather than & Now what's the best way to change & into &? URLDecode? In objective C?
chown33 Moderator Staff member Aug 9, 2009 11,434 9,655 A sea of green May 10, 2011 #2 URLDecoder makes no sense when parsing XML. URLs are encoded using "percent encoding": http://en.wikipedia.org/wiki/Percent-encoding XML uses a completely different coding scheme: http://en.wikipedia.org/wiki/XML#Escaping
URLDecoder makes no sense when parsing XML. URLs are encoded using "percent encoding": http://en.wikipedia.org/wiki/Percent-encoding XML uses a completely different coding scheme: http://en.wikipedia.org/wiki/XML#Escaping