问题描述
由于某种原因,我无法在我的应用中访问 UITableViewCell 的 titleLabel
或 synopsisLabel
。为什么编译器给我这些错误,我该如何解决?
解决方法
在您的 cellForRowAtIndexPath 中,您必须对单元格进行 deque 并将其转换为所需的表格视图单元格子类。
let cell = tableView.dequeueReusableCell(withReuseIdentifier: "Foo",for: indexPath) as! FooCell