问题:带有重音字符的JSON映射文本

时间:2015-06-18 01:54:19

标签: json swift

我遇到了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)
  }
}

0 个答案:

没有答案