我试图在单击时将单元格的细节标签更改为特定文本,但我无法弄清楚如何...我是这样尝试的:
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
let cell = tableView.dequeueReusableCellWithIdentifier("TestCell")!
cell.detailTextLabel?.text! = "TEST"
}
应该怎么做?对不起,我非常(非常)新的。