如何在 collectionView 中传递单元格的选定状态 (Swift)

How to pass a selected state of the cell in collectionView (Swift)

我有一个带有水平滚动 collectionView 的应用程序,我需要将 "selected" 状态传递给其他正在保存的方法。所以我有自定义单元格,我在其中声明了一个观察者:

class StoryViewCell: UICollectionViewCell {

    override var isSelected: Bool {
        didSet {
            print("Selected")
        }
    }

}

滚动时,我得到了应有的打印语句。但是我怎样才能将这个状态传递给我的 ViewController?我无法访问其中的变量。还有其他解决方案吗?

我还尝试了一些 collectionView 委托,例如 :didSelectItem:didUpdateFocusIn context 没有运气的方法。

感谢任何帮助

我们有很多方法可以做到这一点,所以其中之一是:

You have to create protocols:

protocol updateDelegate {
    func update(flag: Bool)
}

And create a delegate object in cell class like that:

 var delegate: updateDelegate?

After that, Your cellForRowAt:

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

    let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as! DemoTableViewCell

    cell.delegate = self
    return cell
}

And cell class methods like that:

override var isSelected: Bool {
    didSet {
        print("Selected")
        delegate?.update(flag: isSelected)
    }
}

并且在视图控制器中你必须定义更新方法:

func update(flag: Bool) {
    print("fefr")
}

It will work for you

您可以在下面找到我的完整代码:

ViewControllor:

import UIKit

protocol updateDelegate {
    func update(flag: Bool)
}
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource, updateDelegate {


    @IBOutlet weak var tableView: UITableView!
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 5
    }

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

        let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as! DemoTableViewCell

        cell.delegate = self
        return cell
    }
    func update(flag: Bool) {
        print("fefr")
    }
}

Custom cell class

class DemoTableViewCell: UITableViewCell {

     var delegate: updateDelegate?

    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
    }
    override var isSelected: Bool {
        didSet {
            print("Selected")
            delegate?.update(flag: isSelected)
        }
    }

}

每当我需要将信息从我的视图逻辑传递到我的业务逻辑时,我会将业务逻辑 class 设置为我的视图的委托。然后在collectionView的delegate方法中,当交互发生需要传递信息给业务逻辑时,调用delegate方法传递数据。 例如:

//Beginning of your View class
protocol StoryViewCellDelegate {
    //This is the function to be called in your ViewController
    func cellWasSelected()
}

class StoryViewCell: UICollectionViewCell {

    var cellDelegate: StoryViewCellDelegate?
    //... other code you have
    override var isSelected: Bool {
        didSet {
            print("Selected")
            cellDelegate?.cellWasSelected()
        }
    }
}

请记住,使用此设置,在 ViewController 中,您必须实施 StoryViewCellDelegate 协议(通常在 ViewController class 的扩展中,这样事情就不会变得混乱)和当创建集合视图的单元格时,您需要将单元格作为 StoryViewCell 出队,然后设置单元格的 cellDelegate = self,这允许在选择单元格时将 ViewController 作为委托调用。 有关委托模式如何工作的更多帮助,这是一个非常好的参考站点: https://useyourloaf.com/blog/quick-guide-to-swift-delegates/

希望对您有所帮助^^