Swift 3 Type 'Any' has no subscript members
let type = (self.data[indexPath.row] as? [String : String])?["Type"]
You need to cast self.data[indexPath.row]
to a dictionary.
let type = (self.data[indexPath.row] as? [String : String])?["Type"]
You need to cast self.data[indexPath.row]
to a dictionary.