gpt4 book ai didi

ios - 如何访问存储在 UICollectionViewController 中的 Collection View Cell 中的变量

转载 作者:行者123 更新时间:2023-11-30 11:46:57 26 4
gpt4 key购买 nike

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

我的 CollectionViewController 由任意数量的单元格组成,这些单元格具有按钮、标签和 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 路线走下去,但遇到了一些问题。也就是说,当我按下按钮时,根本不会调用该函数。下面是我声明该函数的方式。按下按钮永远不会打印出“test”。

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)

}

}

因此,如果有人有实现我目标的好方法,我将非常感激。 This is a photo of my CollectionViewController with 6 items

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

最佳答案

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

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

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 方法实现,您甚至可以停用单元格选择。

关于ios - 如何访问存储在 UICollectionViewController 中的 Collection View Cell 中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48725440/

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