在 iOS 中访问自定义 UITableViewCell 中的视图

Access Views inside custom UITableViewCell in iOS

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

使用cellForRowAtIndexPath:

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

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

cell.customLabel.text = "test"