1

嗨,我在访问存储在我的 CollectionViewCell 中以在我的 CollectionViewController 中的 segue 中使用的字符串值时遇到问题。

我的 CollectionViewController 包含任意数量的具有 Button、Label 和 ID 的单元格。当用户按下按钮时,我想切换到新的 ViewController 并将 ID 作为参数传递。

我意识到你不能从 CollectionViewCell 中分离出来,所以我需要找到一种方法来获取刚刚在我的 CollectionViewController 中按下按钮的单元格的访问 ID。

以下是我创建单元格的方法:

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "collection_cell", for: indexPath) as! GroupCollectionViewCell

    if(GroupViewController.GI.getIds().count>1)
    {
        cell.groupNameLabel.text! = GroupViewController.GN.getNames()[indexPath.row].removeCharacters(from: "\"")
        cell.groupId = GroupViewController.GI.getIds()[indexPath.row]
        cell.groupName = GroupViewController.GN.getNames()[indexPath.row].removeCharacters(from: "\"")


    }
    return cell

}

值得一提的是,我曾尝试沿着 didSelectItem atIndexPath 路线走下去,但遇到了一些问题。也就是说,当我按下按钮时,根本不会调用该函数。下面是我声明该函数的方式。按下按钮永远不会打印出“测试”。

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
    print("test")
}

我将添加我的 CollectionViewControllerCell 的代码以防万一:

class GroupCollectionViewCell: UICollectionViewCell {

@IBOutlet weak var cellButton: UIButton!
@IBOutlet weak var groupButton: UIButton!
@IBOutlet weak var groupNameLabel: UILabel!
var groupId: String = ""
var groupName: String = ""

@IBAction func buttonPressed(_ sender: UIButton) {
    print(self.groupId)
    print(self.groupName)

}

}

因此,如果有人有实现我目标的好方法,我将不胜感激。 这是我的 CollectionViewController 的照片,有 6 个项目

编辑:我意识到单击 CollectionViewControllerCell 中的标签确实会调用我的 didSelectItemAtPath 函数,但不会调用按钮。有没有办法让两者都这样做?

4

1 回答 1

0

您没有提到它,但我假设您在 GroupViewController 中实现了委托和数据源。

在这种情况下,解决您的问题的最简单方法是像这样向您的单元格添加一个闭包:

final class GroupCollectionViewCell: UICollectionViewCell {

    @IBOutlet private weak var cellButton: UIButton!
    @IBOutlet private weak var groupButton: UIButton!
    @IBOutlet private weak var groupNameLabel: UILabel!

    var groupId: String = ""
    var groupName: String = "" {
        didSet {
          groupNameLabel.text = groupName
        }
    }
    var cellSelected: (_ groupId: String, _ groupName: String) -> Void = { _, _ in }

    @IBAction func buttonPressed(_ sender: UIButton) {
        cellSelected(groupId, groupName)
    }
}

创建单元格时,您必须像这样设置闭包:

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "collection_cell", for: indexPath) as! GroupCollectionViewCell
    if GI.getIds().count > 1 {
        cell.groupId = GI.getIds()[indexPath.row]
        cell.groupName = GN.getNames()[indexPath.row].removeCharacters(from: "\"")
        cell.cellSelected = { [weak self] groupId, groupName in
            self?.mySequeImplementation(toId: groupId, name: groupName) // contains you implementation of the transition
        }
    }
    return cell
}

请注意一定要加上【弱自己】!否则你会得到一个保留循环(内存泄漏)。

您不需要 didSelectItemAt 方法实现,甚至可以停用单元格选择。

于 2018-02-11T19:37:27.573 回答