Swift:如何访问某个tableView部分中的自定义单元格中的标签

时间:2016-09-22 14:22:57

标签: ios swift uitableview

我有一个名为UITableViewCell的{​​{1}}自定义UILabel。我希望能够在某个CellLabel访问此标签,例如第3节并提供一个字符串,无需使用数组和tableView section即可显示。

1 个答案:

答案 0 :(得分:1)

您可以通过cellForRowAtIndexPath覆盖TableView

来抓住它
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    var cell:UITableViewCell = tableView.dequeueReusableCellWithIdentifier("YourCustomCellRegisterName") as YourCustomCell
    if(indexPath.section == 3){
       cell.CellLabel.text = "foo"
    }
    return cell
}