gpt4 book ai didi

ios - Swift 3 - .xib 自定义 tableviewcell 中的按钮未执行操作

转载 作者:行者123 更新时间:2023-11-28 18:50:33 24 4
gpt4 key购买 nike

我有一个 tableviewcontroller,我在 .xib 文件中创建了自定义 tableviewcell。

按钮 (myButton) 用于 myCustomTableViewCell.xib 有一个 outlet 到 myCustomTableViewCell.swift

我已经在 TableViewController.swift 文件中为按钮设置了一个 Action

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

let cell = Bundle.main.loadNibNamed("myCustomTableViewCell", owner: self, options: nil)?.first as! myCustomTableViewCell

cell.myButton.setTitle(arrayOfMyData[indexPath.row].myText, for:.normal )

//other code to set some other cell.attribute values like above (all works)

cell.myButton.actions(forTarget: "myAction", forControlEvent: .touchUpInside)

}

在 TableViewController.swift 的其他地方我有 Action :

func myAction(sender: UIButton){
print("pressed myButton")
}

但 myAction 从未被调用/"pressed myButton"从未被打印。我错过了什么?

最佳答案

您需要使用 addTarget(_:action:for:)方法为您的按钮添加操作而不是 actions(forTarget:forControlEvent:) .

函数 actions(forTarget:forControlEvent:) 返回已添加到控件的操作。它不添加目标/操作

cell.myButton.addTarget(self,action: #selector(myAction(sender:)), for: .touchUpInside)

关于ios - Swift 3 - .xib 自定义 tableviewcell 中的按钮未执行操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42071465/

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