将目标操作添加到UITableViewCell可以通过以下步骤实现:
class CustomTableViewCell: UITableViewCell {
var targetAction: (() -> Void)?
// 其他自定义代码
}
class CustomTableViewCell: UITableViewCell {
var targetAction: (() -> Void)?
private let actionButton = UIButton(type: .system)
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
actionButton.addTarget(self, action: #selector(buttonTapped), for: .touchUpInside)
contentView.addSubview(actionButton)
// 设置按钮的约束
actionButton.translatesAutoresizingMaskIntoConstraints = false
actionButton.centerYAnchor.constraint(equalTo: contentView.centerYAnchor).isActive = true
actionButton.trailingAnchor.constraint(equalTo: contentView.trailingAnchor, constant: -16).isActive = true
}
@objc private func buttonTapped() {
targetAction?()
}
// 其他自定义代码
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CustomCell", for: indexPath) as! CustomTableViewCell
// 设置目标操作的回调方法
cell.targetAction = {
// 在这里执行目标操作的代码
}
// 配置其他UITableViewCell的内容
return cell
}
通过以上步骤,你可以将目标操作添加到UITableViewCell中,并在点击按钮时执行相应的操作。请注意,以上代码是使用Swift语言编写的示例代码,你可以根据自己的需求进行修改和适配。
领取专属 10元无门槛券
手把手带您无忧上云