gpt4 book ai didi

ios - UISEGMENTEDCONTROL 在段 0 中的单元格单击并移动到段 1 时移动

转载 作者:行者123 更新时间:2023-11-28 07:45:30 25 4
gpt4 key购买 nike

我必须用 3 创建一个段,段 0 有一个 uicollection View ,当 uicollection 中的一个单元格被点击时,它应该移动到第二个段,即段1.. 但我在 Storyboard 中保留了一个 UIVIEW,它在第 1 段中带有 uicollection View 。所以我需要再添加一个 UIVIEW Storyboard。请帮我。我会附上 Storyboard供您引用。

enter image description here

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {        

}

当我单击单元格时,它应该移动到下一个段,即段 1。为此,我必须在 didselectmethod 或分段控件中的操作部分进行编码。

@IBAction func segmented_tapped_action(_ sender: Any) {

}

最佳答案

switch segmented_Control.selectedSegmentIndex{

case 0:
if let cell = collectionView.cellForItem(at: indexPath) as? CategorySegmentCollectionViewCell {
self.segmented_Control.setEnabled(true, forSegmentAt: 1)
segmented_Control.selectedSegmentIndex = 1
collectionView.reloadData()
print(cell)
}

这就是解决方案。感谢您的支持

关于ios - UISEGMENTEDCONTROL 在段 0 中的单元格单击并移动到段 1 时移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51149625/

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