我有一个UITableView,它由来自另一个XIB文件的单元格填充。如何在tableView的didSelectRowAtIndexPath方法中访问单元格的视图(例如标签)?
答案 0 :(得分:2)
使用cellForRowAtIndexPath
:
let cell = tableView.cellForRowAtIndexPath(indexPath) as! YourCustomCell
然后你可以访问它的标签:
cell.customLabel.text = "test"