I'm Using Swift2.0+, SwiftyJSON, Alamofire
I Got the Value let stringJSON:JSON = ["a1","a2","a3"] from Server
But If I Check stringJSON[0],Then it's null
When I debugPrint(stringJSON), Then it's ["a1","a2","a3"]
How Can I got the value stringJSON[0] //"a1" ?
Do I Have To Convert From JSON To Another?
stringJSONit's a array and not a simpleString? Maybe something like this"["a1","a2","a3"]"and not this["a1","a2","a3"]?debugPrint(stringJSON is JSON)istrueanddebugPrint(stringJSON)is["a1","a2","a3"]