访问iOS

时间:2015-09-04 02:02:50

标签: ios tableview xib tableviewcell

我有一个UITableView,它由来自另一个XIB文件的单元格填充。如何在tableView的didSelectRowAtIndexPath方法中访问单元格的视图(例如标签)?

1 个答案:

答案 0 :(得分:2)

使用cellForRowAtIndexPath

let cell = tableView.cellForRowAtIndexPath(indexPath) as! YourCustomCell

然后你可以访问它的标签:

cell.customLabel.text = "test"