我有一个自定义UITableViewCell,我试图从func更改cell.indicatorLabel背景颜色,但我不知道如何从该func访问该单元格
class mainCell: UITableViewCell {
@IBOutlet weak var barcodeLabel: UILabel!
@IBOutlet weak var indicatorLabel: UILabel!
}
我有一个叫做
的功能func scan() {}
我的cellForRowAt看起来像这样
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as? mainCell
cell?.barcodeLabel.text = barcodeArray[indexPath.row].Barcode
cell?.indicatorLabel.text = barcodeArray[indexPath.row].Indicator
return cell!
}
我想从我的func更改标签的背景颜色,任何可以帮助解决这个问题的人?