使用“didSelectRowAtIndexPath”时更改detail-label

时间:2016-11-21 21:04:45

标签: swift tableview

我试图在单击时将单元格的细节标签更改为特定文本,但我无法弄清楚如何...我是这样尝试的:

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

let cell = tableView.dequeueReusableCellWithIdentifier("TestCell")!

    cell.detailTextLabel?.text! = "TEST" 
}

应该怎么做?对不起,我非常(非常)新的。

0 个答案:

没有答案