选择时如何在 UITableView 中显示隐藏的字幕?

How do I show a hidden subtitle in a UITableView when selected?

有没有办法隐藏所有单元格的字幕,直到 select 一个单元格 - 然后它只显示该单元格的字幕?我尝试了以下代码 - 它成功地隐藏了所有字幕但是当我 select 一个单元格时无法显示一个:

if cell.selected {
        cell.detailTextLabel?.hidden = false
    } else {
        cell.detailTextLabel?.hidden = true
    }

感谢您的帮助。

编辑 2 - 我最终在我的 didSelectRowAtIndexPath 中做了这个:

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

    for cell in tableView.visibleCells() {
        cell.detailTextLabel??.hidden = true
    }
    var cell = tableView.cellForRowAtIndexPath(indexPath)
    cell?.detailTextLabel?.hidden = false

}

非常感谢,Christian!

只需使用didSelectRowAtIndexPath方法并访问触摸的单元格。然后你可以显示 detailTextLabel.

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    var cell:UITableViewCell = tableView.dequeueReusableCellWithIdentifier(cellID)  as UITableViewCell

    cell.detailTextLabel?.hidden = false
}