How to decode UTF8 characters with JSON on iPhone ?
- by Fabrizio
Hi there,
I'm using ASIHTTP Request to get a NSString response that I give to a SBJSON parser.
The problem is that inside the NSString response I got some UTF8 encoded character (accent) that I need do decode to make the app works.
How can I decode UTF8 with JSON?
I call the JSON message like this:
[jsonParser objectWithString:jsonString error:NULL];
Any help would be so appreciated.
Fabrizio