我有一个tableviewcontroller
,我在.xib文件中创建了自定义tableviewcell。
按钮(myButton)用于myCustomTableViewCell.xib有一个myCustomTableViewCell.swift的出口
我已经为TableViewController.swift文件中的按钮设置了一个动作
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中的其他地方我有动作:
func myAction(sender: UIButton){
print("pressed myButton")
}
但myAction从未被调用/“按下myButton”从未打印过。我错过了什么?
答案 0 :(得分:4)
您需要使用addTarget(_:action:for:)
方法为按钮添加操作而不是actions(forTarget:forControlEvent:)
。
函数actions(forTarget:forControlEvent:)
返回已添加到控件的操作。它没有添加target/action
。
cell.myButton.addTarget(self,action: #selector(myAction(sender:)), for: .touchUpInside)