Net: JSONdata , 文件疑惑

{

            let httpResponse = response as! NSHTTPURLResponse
            
            
            if httpResponse.statusCode == 200{
            
                let jsonData = try! NSJSONSerialization.JSONObjectWithData(data!, options: .MutableContainers)
            
                
                print(jsonData)
            
                let dictPerson = jsonData as! Dictionary

不能
as! Dictionary

一定要
as! Dictionary

为什么呢?

你可能感兴趣的:(Net: JSONdata , 文件疑惑)