gpt4 book ai didi

swift - 当您按下按钮不同的单元格时如何联系单元格

转载 作者:行者123 更新时间:2023-11-30 11:35:04 27 4
gpt4 key购买 nike

我有一个 Collection View ,我有两个不同的单元格,当打开应用程序时我需要打开单元格,当您按下按钮时打开另一个单元格,感谢帮助

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

if (indexPath.item % 2 == 0) {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "TOWCell", for: indexPath) as! TOWCell
return cell
}else {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "UPCOMINGViewCell", for: indexPath) as! UPCOMINGViewCell
return cell
}
}


@IBAction func differentcellsButon(_ sender: Any) {
/// here I need call cells
}

最佳答案

试试这个:

@IBAction func differentcellsButon(_ sender: Any) {
self.collectionView.reloadData()
}

关于swift - 当您按下按钮不同的单元格时如何联系单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49849615/

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