ios - jsonserialization - ¿Cómo editar el archivo json con Swift?
parse json swift 4 (0)
¿Puedo leer un atributo de JSON, cambiar y volver al JSON?
Exp: leí el archivo json
let jsonData:NSData = LocalFile.ReadFile(fileName)
let json = try NSJSONSerialization.JSONObjectWithData(jsonData, options: .AllowFragments)
if let m_array = json as? [[String: AnyObject]]{...}
Cambio el valor de m_array
Quiero guardar el archivo json con una parte de contenido nuevo de m_array? ¿Cómo puede hacer eso?