gpt4 book ai didi

ios - Swift UICollectionViewCell didSelectItemAt 不在单元格上打印标签名称

转载 作者:行者123 更新时间:2023-11-28 12:13:54 30 4
gpt4 key购买 nike

我已经通过 google 和 stack overflow 进行了查看,但找不到答案。我有一个 UICollectionView 并希望在单击单元格时将用户带到另一个 View 。但在这样做之前,我想单击模拟器上的单元格并将标签的名称打印在控制台中,这样我就可以从那里弄清楚如何编写 performSegue 方法。我在使用 didSelectItemAt 函数时遇到问题。

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let clothesCell = collectionView.dequeueReusableCell(withReuseIdentifier: "clothesCell", for: indexPath) as! closetCollectionViewCell
clothesCell.clothingName.text = shirtStyle[indexPath.item]
clothesCell.clothingColor.text = shirtColor[indexPath.item]
clothesCell.clothingSize.text = "\(sizes[indexPath.item])"

return clothesCell
}

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
print(indexPath.item.clothingName)
}

最佳答案

在 didselectItem 中使用它打印所选项目

print(shirtStyle[indexPath.item])

关于ios - Swift UICollectionViewCell didSelectItemAt 不在单元格上打印标签名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47539104/

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