Using SwiftyJSON how would I parse the following JSON array into a Swift [String]?
{ "array": ["one", "two", "three"] } I have tried this code, but it doesn't work for me:
for (index: String, obj: JSON) in json["array"] { println(obj.stringValue) } What would be the best way to handle this? Thank you.