Reputation: 9891
When pasrsing XML using NSXMLParser, I encountered this problem when the parser received some characters that it couldn't take such as: the auto-correct "..." or "--" in MSWord.
My app reads XML which is exported out of my database from a PHP file. I wonder if I should handle this on the server side or on the iPhone SDK and How?
any help would be appreciated.
Upvotes: 0
Views: 501
Reputation: 24299
It sounds like an encoding issue.
Are you sure that the XML file is being served as the same encoding as in its header?
Upvotes: 1