我遇到了JSON问题。我有一个Rest API来返回一个对象列表。此对象的文本包含enter和tittle(ó),文本包含“\ U00f3n”,“\ n”,我无法将其映射到文本。
我将结果转换为JSON,如下所示:
let jsonResult: AnyObject! = NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.MutableContainers, error: &err)
我将结果映射到这样的文字:
func parseNew(pNew: AnyObject)->New
{
if let description = pNew["Text"] as? String
{
newRetorno.setText(description)
}
}