gpt4 book ai didi

ios - Swift 3.0 TableView 单元格按钮

转载 作者:可可西里 更新时间:2023-10-31 23:55:14 26 4
gpt4 key购买 nike

我在 tableview 单元格上设置了一个按钮,我想知道如何操作它。也就是说,我有兴趣更改按钮的名称标题并在单击按钮时添加另一个目标(按钮的不同功能)。我的想法是,这需要添加到 buttonClicked 函数中,但我不确定如何引用被单击的特定 cellForRow。也许可以在 cellForRow 中使用条件来确定按钮标题是什么?我不太确定解决此问题的最佳方法是什么。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = guestTableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)

let button : UIButton = UIButton(type:UIButtonType.custom) as UIButton

button.frame = CGRect(origin: CGPoint(x: 200,y :60), size: CGSize(width: 100, height: 24))
let cellHeight: CGFloat = 44.0
button.center = CGPoint(x: view.bounds.width / (4/3), y: cellHeight / 2.0)


button.setTitleColor(.blue, for: .normal)
button.addTarget(self, action: #selector(buttonClicked), for: UIControlEvents.touchUpInside)
button.setTitle("Add", for: UIControlState.normal)

cell.addSubview(button)


return cell
}

func buttonClicked(sender : UIButton!) {
print("Added!")


}

最佳答案

适用于 Swift 4 和 Swift 5

找到“indexPath.row”和“indexPath.section

//在“cellForRowAt”中的按钮上添加目标

cell.myBtn.addTarget(self, action: #selector(self.btnAction(_:)), for: .touchUpInside)

//添加函数

func btnAction(_ sender: UIButton) {

let point = sender.convert(CGPoint.zero, to: yourTableView as UIView)
let indexPath: IndexPath! = yourTableView.indexPathForRow(at: point)

print("row is = \(indexPath.row) && section is = \(indexPath.section)")
}

关于ios - Swift 3.0 TableView 单元格按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45473957/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com