嗨,我在访问存储在我的 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 函数,但不会调用按钮。有没有办法让两者都这样做?