Using SwiftyJSON how would I parse the following JSON array into a Swift [String]?
SwiftyJSON
Swift [String]
{ \"array\": [\"one\", \"two\", \"three\"] }
Simply do this:
for stringInArray in json["array"]{ let value = stringInArray.1.stringValue }