SwipeCellKit 使用时的注意点

发布时间:2024-07-14 17:21:28

1.实现协议

BaseFormController: SwipeTableViewCellDelegate

2.cell继承SwipeTableViewCell

class TaskCreateCell: SwipeTableViewCell

3.赋值self给cell代理

 //设置tableview的cell
    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cellIdentifier="invitecell"
        let cell = TaskCreateCell(style:UITableViewCell.CellStyle.default, reuseIdentifier:cellIdentifier);
        /*设置在选中时是无色的*/
        cell.selectionStyle = UITableViewCell.SelectionStyle.none;
        cell.setValueForCell(task: tasks![indexPath.row]);
        cell.delegate=self;    -------------重点
        return cell;
    }

Card image cap
APP STORE
Card image cap
应用宝
Card image cap
小米
Card image cap
华为