我正在使用 php 和 JSON 从我的数据库中提取数据:
$output[]=array("userJoomla" => "2749", "userID" => $e['mobileUserID'], "userName" => utf8_encode($e['mobileUserName']));
我使用 utf8_encode 因为书面口音和西班牙字母ñ
在我的 Objective-C 代码中:
NSString *serverOutput = [[NSString alloc] initWithData:dataURL encoding: NSUTF8StringEncoding];
但是,当我打印它时,我得到:
“Roc\u00edo”而不是“Rocío”
我怎样才能做到这一点。