When the result comes from the server I use the following code snippet to get the result:
if let JSON = response.result.value {
print("JSON: \(JSON)")
}
And the print result is:
[{
Nome = Tiago;
Idade = 22;
Cidade = Minas;
}, {
Nome = Luisa;
Idade = 12;
Cidade = Califórnia;
}]
How can I do to get this result and put it in an array?