I just converted my project to Swift 3 I have this line of code here:
let type = self.data[indexPath.row][\"Type\"] as? String
but now I get th
let type = (self.data[indexPath.row] as? [String : String])?["Type"]
You need to cast self.data[indexPath.row] to a dictionary.
self.data[indexPath.row]