如何在Swift中的UITableViewCell上添加带有click事件的按钮?

时间:2015-05-07 15:15:08

标签: ios uitableview swift

在我的主页面中,我为UITableViewCell创建了一个xib文件。我正在从该xib文件中加载单元格,并且工作正常。

在细胞内部,我有一些标签和按钮。我的目标是通过单击单元格上的按钮来更改标签。

我的代码喜欢以下

import UIKit


class SepetCell: UITableViewCell{

    @IBOutlet var barcode: UILabel!
    @IBOutlet var name: UILabel!
    @IBOutlet var fav: UIButton!
    @IBOutlet var strep: UIStepper!
    @IBOutlet var times: UILabel!



    @IBAction func favoriteClicked(sender: UIButton) {
        println(sender.tag)
        println(times.text)

        SepetViewController().favorite(sender.tag)



    }
    override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code
    }

    override func setSelected(selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)

        // Configure the view for the selected state
    }
}

这是我的代码后面的xib文件.swift。

主页中的代码如下所示:

  import UIKit
import CoreData

class SepetViewController: UIViewController, UITextFieldDelegate, UITableViewDataSource, UITableViewDelegate {

  @
  IBOutlet
  var sepetTable: UITableView!
    var barcodes: [CART] = []

  let managedObjectContext = (UIApplication.sharedApplication().delegate as!AppDelegate).managedObjectContext

  override func viewWillAppear(animated: Bool) {
    if let moc = self.managedObjectContext {


      var nib = UINib(nibName: "SepetTableCell", bundle: nil)
      self.sepetTable.registerNib(nib, forCellReuseIdentifier: "productCell")
    }
    fetchLog()
    sepetTable.reloadData()
  }

  func fetchLog() {

    if let moc = self.managedObjectContext {
      barcodes = CART.getElements(moc);
    }
  }



  func tableView(tableView: UITableView, numberOfRowsInSection section: Int) - > Int {
    return self.barcodes.count
  }

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


    let cell = tableView.dequeueReusableCellWithIdentifier("productCell") as ? SepetCell


    if cell == nil {
      println("cell nil")

    }



    let product: CART
    product = barcodes[indexPath.row]



    cell!.barcode ? .text = product.barcode
    cell!.name ? .text = product.name
    cell!.fav.tag = indexPath.row

    return cell!
  }

  func favorite(tag: Int) {



  }
}

当我点击Cell内部的fav按钮时。我想将标签文本的时间更改为例如。

当我点击收藏夹按钮时,该事件将转到SepetCell.swift favoriteClicked(发件人:UIButton)函数。

所以如果我试着打电话: SepetViewController()。喜爱(sender.tag)

它会进入

func favorite(tag: Int) {

      sepetTable.reloadData()

    }

但sepetTable在它去的时候是零。我认为这是因为当我调用这个SepetViewController()。favorite(sender.tag)函数时。它首先创建SepetViewController类。因此,由于未设置对象,因此它将变为null。

我如何才能达到sepetTable或解决此问题的最佳方法。

感谢。

3 个答案:

答案 0 :(得分:47)

解决此问题的流行模式是闭包和委托。 如果你想使用闭包,你会做这样的事情:

final class MyCell: UITableViewCell {
    var actionBlock: (() -> Void)? = nil

然后

    @IBAction func didTapButton(sender: UIButton) {
        actionBlock?()
    }

然后在你的tableview委托:

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

    let cell = tableView.dequeueReusableCellWithIdentifier("MyCellIdentifier") as? MyCell
    cell?.actionBlock = {
       //Do whatever you want to do when the button is tapped here
    }

一种流行的替代方法是使用委托模式:

    protocol MyCellDelegate: class {
        didTapButtonInCell(_ cell: MyCell)
    }

    final class MyCell: UITableViewCell {
        weak delegate: MyCellDelegate?

然后

    @IBAction func didTapButton(sender: UIButton) {
        delegate?.didTapButtonInCell(self)
    }

.. 现在在你的视图控制器中:

然后在你的tableview委托:

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

    let cell = tableView.dequeueReusableCellWithIdentifier("MyCellIdentifier") as? MyCell
    cell?.delegate = self

并按照以下协议添加一致性:

extension MyViewController: MyCellDelegate {
    didTapButtonInCell(_ cell: MyCell) {
       //Do whatever you want to do when the button is tapped here
    }
}

希望这有帮助!

答案 1 :(得分:0)

以上所有模式都很好。 我的两分钱,以防万一您通过代码添加 (例如,多个不同的单元格,依此类推。) 有一个简单的FAR解决方案。

由于按钮允许指定“目标”,因此可以在设置时将控制器AND动作直接传递给单元格/按钮。

在控制器中:

let selector = #selector(self.myBtnAction)
setupCellWith(target: self, selector: selector)

...

在带有按钮的自定义单元格中:

final func setupCellWith(target: Any? selector: Selector){
       btn.addTarget(target, 
        action: selector,
       for: .touchUpInside)

}

答案 2 :(得分:0)

凌晨2点:您正在考虑这个问题。创建一个自定义的TableViewCell类;将原型单元格类设置为新的自定义类;然后创建一个IBAction。