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