0
I am converting Nsstring to Nsdictionary but when I step inside a variable always returns null.
what I am doing:
NSDictionary *json =
[NSJSONSerialization JSONObjectWithData: [body dataUsingEncoding:NSUTF8StringEncoding]
options: NSJSONReadingMutableContainers
error: nil];
Where body is my variable, but if I put her content there everything works normal!
What could be going on?
conteúdo da variável: @"{\"teste\" : \"ehtetra\"}"