有没有办法隐藏所有单元格的字幕,直到你选择一个单元格 - 然后它只显示该单元格的副标题?我尝试了以下代码 - 成功隐藏了所有字幕,但在选择单元格时无法显示:
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!
答案 0 :(得分:1)
只需使用didSelectRowAtIndexPath
方法并访问触摸的单元格即可。然后你可以显示detailTextLabel。
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
var cell:UITableViewCell = tableView.dequeueReusableCellWithIdentifier(cellID) as UITableViewCell
cell.detailTextLabel?.hidden = false
}