提问人:Ramzan 提问时间:2/12/2021 更新时间:2/12/2021 访问量:294
如何使tableView单元格的某些按钮可单击,某些按钮不可单击|iOS系统
How to make some buttons of tableView cells clickable and some unclickable | iOS
问:
我有一个 tableView,其中每个单元格都包含一个具有不同标题的按钮。
实际上,我正在将标题数组传递给按钮。
cell.applyButton.setTitle(titleValues[indexPath.row], for: .normal)
现在,我只想使那些具有标题时间表的按钮可单击。请帮忙。
答:
1赞
DonMag
2/12/2021
#1
根据标题设置按钮的属性:.isEnabled
cell.applyButton.setTitle(titleValues[indexPath.row], for: .normal)
cell.applyButton.isEnabled = titleValues[indexPath.row] == "Schedule"
评论
reloadData