如何使用按钮标签快速访问自定义单元格的内容?

我有一个在自定义单元格中具有自定义按钮的应用程序。如果选择该单元格,它将显示到详细信息视图,这是完美的。如果选择单元格中的按钮,则下面的代码将单元格索引打印到控制台中。


我需要访问所选单元格的内容(使用按钮)并将其添加到数组或字典中。我对此很陌生,因此很难找到如何访问单元格的内容。我尝试使用didselectrowatindexpath,但是我不知道如何将索引强制为标签的索引...


因此,基本上,如果每个单元格中有3个单元格带有“ Dog”,“ Cat”,“ Bird”作为cell.repeatLabel.text,并且我选择了第1行和第3行(索引0和2)中的按钮,在数组/字典中添加“狗”和“鸟”。


    // MARK: - Table View


override func numberOfSectionsInTableView(tableView: UITableView) -> Int {

    return 1

}


override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

    return postsCollection.count

}


override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {


    let cell: CustomCell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! CustomCell


    // Configure the cell...

    var currentRepeat = postsCollection[indexPath.row]

    cell.repeatLabel?.text = currentRepeat.product

    cell.repeatCount?.text = "Repeat: " + String(currentRepeat.currentrepeat) + " of " + String(currentRepeat.totalrepeat)


    cell.accessoryType = UITableViewCellAccessoryType.DetailDisclosureButton


    cell.checkButton.tag = indexPath.row;


    cell.checkButton.addTarget(self, action: Selector("selectItem:"), forControlEvents: UIControlEvents.TouchUpInside)



    return cell


}


func selectItem(sender:UIButton){


    println("Selected item in row \(sender.tag)")


 }


桃花长相依
浏览 435回答 3
3回答

临摹微笑

由于您在表格视图中有1个部分,因此可以获取如下的单元格对象。let indexPath = NSIndexPath(forRow: tag, inSection: 0)let cell = tableView.cellForRowAtIndexPath(indexPath) as! CustomCell!您将从按钮标签获得的标签。

米脂

Swift 3 我只是使用按钮标签的超级视图在@IBAction函数中获取访问单元的解决方案。let cell = sender.superview?.superview as! ProductCellvar intQty = Int(cell.txtQty.text!);intQty = intQty! + 1let  strQty = String(describing: intQty!);cell.txtQty.text = strQty
打开App,查看更多内容
随时随地看视频慕课网APP