I have a JSON response which is in brackets and I struggle to access the inner fields e.g. display_name with Swift. How can I do that?
Optional([\"result\": { us
In response result is dictionary not array, try to get like this
dictionary
array
let result = response!["result"] as? [String:AnyObject]