gpt4 book ai didi

ios - Swift - 在编辑模式下更改表格单元格背景

转载 作者:搜寻专家 更新时间:2023-11-01 07:11:49 24 4
gpt4 key购买 nike

我有通过 XIB 包含用户定义单元格的表格。我的表格支持编辑模式以删除或重新排列单元格。

我已经实现了

override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
return true
}

现在,有没有办法在单元格处于“编辑模式”时更改单元格的背景?

最佳答案

我认为为此您需要两个委托(delegate)方法:

func tableView(UITableView, willBeginEditingRowAt: IndexPath)

Tells the delegate that the table view is about to go into editing mode.

func tableView(UITableView, didEndEditingRowAt: IndexPath?)

Tells the delegate that the table view has left editing mode.

您可以像这样实现每个委托(delegate)方法:

tableView.cellForRow(at: indexPath).backgroundColor = someColor

关于ios - Swift - 在编辑模式下更改表格单元格背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44486771/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com