在Swift 2中实现accessoryButtonTappedForRowWithIndexPath:

时间:2015-10-18 13:52:43

标签: ios swift uitableview swift2

我试图在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的代码,我可以这样做。我错过了什么?

https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITableViewDelegate_Protocol/#//apple_ref/occ/intfm/UITableViewDelegate/tableView:accessoryButtonTappedForRowWithIndexPath

1 个答案:

答案 0 :(得分:16)

不确定为什么要在代码中添加公开按钮指示器。

您正在寻找的只是两个步骤 -

第1步:在单元格上添加正确的accessoryType

cell.accessoryType = .DetailDisclosureButton

第2步:通过创建accessoryButtonTappedForRowWithIndexPath功能点击按钮时执行操作:

override func tableView(tableView: UITableView, accessoryButtonTappedForRowWithIndexPath indexPath: NSIndexPath) {
    doSomethingWithItem(indexPath.row)
}