单击段0中的单元格并将其移至段1时,UISEGMENTEDCONTROL移动

时间:2018-07-03 08:11:12

标签: ios swift uisegmentedcontrol

我必须创建一个具有3的段,当单击uicollection内的单元格时,段0具有一个uicollection视图,它应该移动到第二个段,即段1。在情节提要中保留了一个UIVIEW,该提要在片段1中具有uicollection视图。因此,我需要在情节提要中再添加一个UIVIEW。请帮我。我将附上情节提要供您参考。

enter image description here

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

}

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

@IBAction func segmented_tapped_action(_ sender: Any) {

}

1 个答案:

答案 0 :(得分:0)

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)
        }

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