无法访问 UITableViewCell 的标题或标签

问题描述

由于某种原因,我无法在我的应用中访问 UITableViewCell 的 titleLabelsynopsisLabel。为什么编译器给我这些错误,我该如何解决

erroneous code

解决方法

在您的 cellForRowAtIndexPath 中,您必须对单元格进行 deque 并将其转换为所需的表格视图单元格子类。

let cell = tableView.dequeueReusableCell(withReuseIdentifier: "Foo",for: indexPath) as! FooCell