我必须创建一个具有3的段,当单击uicollection
内的单元格时,段0具有一个uicollection
视图,它应该移动到第二个段,即段1。在情节提要中保留了一个UIVIEW
,该提要在片段1中具有uicollection
视图。因此,我需要在情节提要中再添加一个UIVIEW
。请帮我。我将附上情节提要供您参考。
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
}
当我单击该单元格时,它应该移动到下一个段,即段1。为此,我必须在didselectmethod
或分段控件中的动作部分进行编码。
@IBAction func segmented_tapped_action(_ sender: Any) {
}
答案 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)
}
这将是解决方案。感谢您的支持