NSJSONSerialization not working as expected in a Playground
I have to get football game schedule via JSON and extract date of each game of one of the specific universities. I tried: let url = NSURL(string: "SCHOOL URL") let request = NSURLRequest(URL: url!) let session = NSURLSession.sharedSession() let task = session.dataTaskWithRequest(request){ (data, response, error) -> Void in do{ let jsonData = try NSJSONSerialization.JSONObjectWithData(data!, options: .AllowFragments) if let schedule = jsonData["schedule"] as? [[String: AnyObject]]{ for game in schedule{ if let date = game["date"] as? String{ print("\(date)"); } } } } catch let error as NSError{