gpt4 book ai didi

ios - 如何从嵌套的 collectionView 单元传递按钮操作?

转载 作者:搜寻专家 更新时间:2023-10-31 22:10:11 24 4
gpt4 key购买 nike

我有一个 MainCollectionView 用于在项目之间滚动,在其中一个单元格中我有另一个带有单元格的 collectionView。在该 Collection View 中,每个单元格都有一个按钮。我的问题是如何在点击按钮时将操作从我的按钮传递到我的 MainCollectionView?我确实为单元格中的那个按钮创建了协议(protocol),但我不知道如何让 MainCollectionView 知道我的按钮何时被点击。我可以从我的单元格类中调用操作,但我认为最好在我的 MainCollectionView 模型中运行它。下面是我的按钮协议(protocol)。

protocol ThanhCaHotTracksCellDelegate: class {
func handleSeeAllPressed()}

weak var delegate: ThanhCaHotTracksCellDelegate?


@objc func handleSeeAllButton(){
delegate?.handleSeeAllPressed()
}

最佳答案

就像 NSAdi 所说的那样,您走在正确的轨道上,但是委托(delegate)模式对于单个任务(例如通知按钮按下)的开销有点大。

我更喜欢使用闭包,因为它们是轻量级的并且有助于将相关代码保持在一起。

使用闭包

这就是我在 UITableView 中一直在做的事情。所以这也适用于 UICollectionView

class MyTableViewCell: UITableViewCell {
var myButtonTapAction: ((MyTableViewCell) -> Void)?

@IBAction func myButtonTapped(_ sender: Any) {
myButtonTapAction?(self)
}
}

因此,当我将我的单元格出队并将其转换为 MyTableViewCell 时,我可以像这样设置一个自定义操作:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "myCellReuseIdentifier", for: indexPath) as! MyTableViewCell

cell.myButtonTapAction = { cell in
// Put your button action here
// With cell you have a strong reference to your cell, in case you need it
}
}

使用直接引用

当您将 UICollectionView 单元格出列时,您可以通过将该单元格转换为单元格的自定义子类来获取对按钮的引用。

然后只需执行以下操作

cell.button.addTarget(self, action: #selector(didTapButton(_:)), forControlEvents: .TouchUpInside)

而且外面有一个函数:

@objc func didTapButton(_ sender: UIButton) {
// Handle button tap
}

缺点是您无法直接访问您的手机。您可以使用 button.superview? 但这不是一个好主意,因为您的 View 层次结构可能会改变...

关于ios - 如何从嵌套的 collectionView 单元传递按钮操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48782754/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com