gpt4 book ai didi

ios - 无法识别的选择器发送到实例 tableview swift

转载 作者:行者123 更新时间:2023-11-28 13:08:14 25 4
gpt4 key购买 nike

在我的 cellFoRowAtIndexPath 中,我想在属于单元格的按钮上添加一个功能。

在我的 cellFoRowAtIndexPath 中,我添加了这段代码。

cell.acceptBtn.addTarget(self, action: "acceptRequest", forControlEvents: .TouchUpInside)

然后我这里有这个功能。

func acceptRequest(sender: UIButton) {
println("hello");
}

当我运行项目并单击该单元格上的按钮时,我得到一个

Terminating app due to uncaught exception 'NSInvalidArgumentException' unrecognized selector sent to instance

需要注意的是,我有另一个按钮,我使用了与 declineRequest 完全相同的方式,它工作得很好。

最佳答案

尝试以下操作:

cell.acceptBtn.addTarget(self, action: "acceptRequest:", forControlEvents: .TouchUpInside)

… 注意它是 "acceptRequest:" 而不是 "acceptRequest"。后者意味着该函数没有参数。

关于ios - 无法识别的选择器发送到实例 tableview swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32161493/

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