I\'m using NSJSONSerialization as so:
NSJSONSerialization
let twData: AnyObject? = NSJSONSerialization.JSONObjectWithData(responseData, options: NSJSONReadingOption
As you already know it is a String type you are inserting to something transformable, please do:
if let twoDataArray = twData as? Array>{ for data in twoDataArray{ print(data) } }
This will guard you from a crashing app when the dictionary is not of type .