iOS Swift - UITableViewCell,左侧细节,右侧细节和副标题?

时间:2018-03-25 08:37:08

标签: ios swift uitableview

如何向已经留下详细信息和副标题的单元格添加正确的细节。以及如何将textLabel提供给正确的细节?

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)

    let monster = monsters[indexPath.row]
    cell.textLabel?.text = monster.name
    cell.detailTextLabel?.text = monster.subtitle

    return cell
}

2 个答案:

答案 0 :(得分:7)

试试这个

JOIN

答案 1 :(得分:0)

单击tableView单元格。在文档大纲中这样做比较容易。

将“属性”检查器中的样式属性从“基本”更改为“自定义”。您现在可以添加标签。基本模板已设置,因此您无法对其进行更改。我相信这是你遇到的问题。

enter image description here

我确定在您放置标签后,您知道该怎么做,但以防万一:

将新标签放在单元格的右边缘,并使用Autolayout将其固定在顶部,底部和右侧。

重新连接你的标题,副标题IBOutlets,并创建一个正确的标签IBOutlet,连接它,你应该完成。

enter image description here