gpt4 book ai didi

swift - cellView 中的按钮我不知道哪个单元格用户按下了

转载 作者:行者123 更新时间:2023-11-28 12:42:21 24 4
gpt4 key购买 nike

我在 tableView 中有自定义单元格在里面我有一个按钮,我想当用户点击按钮时按下 viewController,我该怎么做以及我如何知道哪个单元格用户使用它的按钮,因为这里没有 didSelectRowAtIndexPath

最佳答案

创建自定义按钮类

class CustomButton: UIButton {
var indexPath: NSIndexPath!
}

在您的自定义单元格中创建 CustomButton 类型的按钮,在 cellForRowAtIndexPath 中添加以下行

cell.yourCustomButton.indexPath = indexPath

像这样定义IBAction

@IBAction func customButtonClicked(sender: CustomButton) {
let indexPath: NSIndexPath = sender.indexPath
// Do whatever you want with the indexPath
}

关于swift - cellView 中的按钮我不知道哪个单元格用户按下了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39141570/

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