我收到一些带有奇怪 UTF-8 字符串的 JSON。例如:
{
"title": "It\U2019s The End";
}
处理这些数据以便以可读方式呈现的最佳方式是什么?我想将该 \U2019 转换为它应该代表的引号。
编辑:假设我已将字符串解析为 NSString*jsonResult
编辑 2:我通过AFNetworking接收 JSON :
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
NSString* jsonResult = [JSON valueForKeyPath:@"title"];
} failure:nil];