我尝试为单元格添加自定义accesoryView,并且做到了,但是我不明白如何在该按钮调用函数中获取indexPath.row!
在#selector中,我无法传输签名中的索引
我的细胞鳕鱼
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! NewMessageTableViewCell
cell.userData = searchUsers[indexPath.row]
cell.addButton.addTarget(self, action: #selector(printHello), for: .touchUpInside)
cell.accessoryView = cell.addButton
return cell
}