我有一个基于表格的应用程序,我想在其中使用.subtitle样式单元格。我使用以下代码:
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
// Dequeue Resuable Cell
let cell = tableView.dequeueReusableCell(withIdentifier: CellIdentifier) ?? UITableViewCell(style: .subtitle, reuseIdentifier: CellIdentifier)
cell.textLabel?.text = "Hello"
cell.detailTextLabel?.text = "Goodbye"
return cell
}
但我不认为这实际上是将我的单元格设置为字幕样式,因为该应用程序在启动时看起来如下所示:
另外值得注意的是,我没有在Storyboard中使用“Prototype”单元格(我开始使用的教程避开它们)所以我无法在那里设置单元格样式,它需要在代码中。
我做错了什么?