简体   繁体   English

从Swift中的另一个类访问某些值

[英]Access to some values from another class in Swift

I have a TableViewCell class like this: 我有一个这样的TableViewCell类:

class CampaignsTableViewCell: UITableViewCell {

    @IBOutlet weak var activateButton: UIButton!
    @IBOutlet weak var titleCampaignPlaceholder: UILabel!

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

    override func setSelected(_ selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)
        // Configure the view for the selected state
    }

    private func setUpButton(){
        activateButton.backgroundColor = .clear
        activateButton.layer.cornerRadius = 5
        activateButton.layer.borderWidth = 1
        activateButton.layer.borderColor = UIColor.blue.cgColor
    }
}

And, in another class which is a ViewController I have my UITableView methods: 而且,在另一个类是ViewController中,我有UITableView方法:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    let rowNumber = indexPath.row
    let cellIdentifier = "CampaignTableViewCell"
    guard let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as? CampaignsTableViewCell else {
        fatalError("The dequeued cell is not an instance of TableViewCellController.")
    }

    cell.titleCampaignPlaceholder.text = campaignsArray[rowNumber].campaignName


    return cell
}

I need to use my activateButton in my UITableView method in order to access to campaignsArray. 我需要在UITableView方法中使用ActivateButton才能访问campaignsArray。 I have another method which requieres values from that array, so I need that method is called every time activateButton is pressed from my UITableView. 我有另一个方法需要从该数组中获取值,因此我需要在每次从UITableView中按下activateButton时都调用该方法。

Any idea ? 任何想法 ? Thank you very much 非常感谢你

What I like doing in those cases where you have a button inside your UITableViewCell is the following: 在UITableViewCell中有一个按钮的情况下,我喜欢做的事情如下:

Give the cell a closure that is called when tapping on the button like so 给单元格一个闭合,当点击按钮时调用该闭合

class CampaignsTableViewCell: UITableViewCell {
   ... all your code....

   // give your cell a closure that is called when the button is pressed    
   var onButtonPressed: ((_ sender: UIButton) -> ())?

   @IBAction func buttonPressed(sender: UIButton) {  // wire that one up in IB
       onButtonPressed?(sender)
   }
 }

and then inside your TableViewController 然后在您的TableViewController内部

let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as! CampaignsTableViewCell

cell.titleCampaignPlaceholder.text = campaignsArray[rowNumber].campaignName

cell.onButtonPressed = { [weak self] sender in
    // Do your magic stuff here
}

return cell

Hope that helps 希望能有所帮助

Your cell will get that event, not tableView . 您的单元格将获取该事件,而不是tableView What you need to do is: 您需要做的是:

Create protocol inside your cell: 在您的单元内创建协议:

protocol CampaignsTableViewProtocol{
    func actionButtonPressed(row: Int)
}

class CampaignsTableViewCell: UITableViewCell {

    @IBOutlet weak var activateButton: UIButton!
    @IBOutlet weak var titleCampaignPlaceholder: UILabel!
    // keep info about row 
    var rowIndex: Int = -1
    // create delegate that will let your tableView about action button in particular row
    var delegate : CampaignsTableViewProtocol?

    override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code
        setUpButton()
        self. activateButton.addTarget(self, action: #selector(self.activatePressed), for: UIControlEvents.touchDown)
    }

    override func setSelected(_ selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)
        // Configure the view for the selected state
    }

    func activatePressed(){
         self.delegate?.actionButtonPressed(row :rowIndex)
    }

    private func setUpButton(){
        activateButton.backgroundColor = .clear
        activateButton.layer.cornerRadius = 5
        activateButton.layer.borderWidth = 1
        activateButton.layer.borderColor = UIColor.blue.cgColor
    }
}

Your tableViewController needs to adopt this protocol: 您的tableViewController需要采用以下协议:

class MyTableViewController: UITableViewDelegate, UITableViewDataSource, CampaignsTableViewProtocol {
// rest of the code
}

Also, you will need to implement delegate function in your tableViewController: 另外,您将需要在tableViewController中实现委托函数:

func actionButtonPressed(row: Int) {
    // get campaign you need
    let campaign = campaignsArray[row]
    // rest of the code
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM