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;
}