我试图在accessoryButtonTappedForRowWithIndexPath:
上的Swift 2中实施UITableViewController
。
正如我在下面解释的那样,我认为在创建disclosureIndicator
时我遗漏了一些东西,但我不知道是什么。它是从代码中提取的,但我的目标动作并没有被调用。 UGH!
要以编程方式执行此操作,我的理解是我需要在返回cellForRowAtIndexPath
之前在cell
中添加detailDisclosure指示符。我按照以下方式做到这一点:
// Create disclosure indicator button in the cell
let disclosureIndicatorButton = UIButton(type: UIButtonType.DetailDisclosure)
disclosureIndicatorButton.addTarget(self, action: "disclosureIndicatorPressed:event:", forControlEvents: UIControlEvents.TouchUpInside)
customCell.accessoryType = .DisclosureIndicator
在我的代码中,detailDisclosure V形图被绘制,但是我分配给它的目标动作方法没有被调用。
然后我需要在按下时为按钮创建一个处理程序:
func disclosureIndicatorPressed(sender: UIButton, event: UIControlEvents) {
print("disclosure button pressed")
// convert touches to CGPoint, then determine indexPath
// if indexPath != nil, then call accessoryButtonTappedForRowWithIndexPath
}
最后accessoryButtonTappedForRowWithIndexPath
包含执行segue的代码,我可以这样做。我错过了什么?
答案 0 :(得分:16)
不确定为什么要在代码中添加公开按钮指示器。
您正在寻找的只是两个步骤 -
第1步:在单元格上添加正确的accessoryType
:
cell.accessoryType = .DetailDisclosureButton
第2步:通过创建accessoryButtonTappedForRowWithIndexPath
功能点击按钮时执行操作:
override func tableView(tableView: UITableView, accessoryButtonTappedForRowWithIndexPath indexPath: NSIndexPath) {
doSomethingWithItem(indexPath.row)
}