Now I know that when swift compiles it just makes a NSDictionary, but the NSDictionary and Swift dictionaries have different syntax. Is there a way (through a loop or somet
NSDictionary and Dictionary are pretty much interchangeable. So there's no need to, but yes you can:
NSDictionary
Dictionary
let jsonDict = (NSJSONSerialization.JSONObjectWithData(jsonData, options: nil, error: &error) as NSDictionary) as Dictionary