在UITableview的单元格中放置一个UIButton,在运行时可见单元格中的按钮可以工作,但在表中位于下方的其他单元格中则不能。
lazy var tableController: TableController<FIRAskProducts, WantedTableViewCell> = {
return TableController(tableView: tableView, configure: { cell, value, indexPath in
cell.getInContactButton.tag = indexPath.row
cell.getInContactButton.addTarget(self, action: #selector(self.getInCon(sender:)), for: .touchUpInside)
cell.bringSubviewToFront(cell.getInContactButton)
cell.update(prod: value)
})
}()