这是我的代码:
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request
success: ^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON){
NSLog(@"JSON : %@",JSON);
}
failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON){
NSLog(@"Failed %@",error);
}];
请求成功,我得到了 JSON。这里的问题是返回的 JSON 包含一些显示如下的希腊字符:
U03c9\U03c1\U03b1\U03af\U03b1\U03b5\U03c6\U03b1\U03c1\U03bc\U03bf\U03b3\U03ae!
在我的浏览器上,结果还可以。如何强制 xcode 理解每个非英文字符?(例如中文或俄文)