gpt4 book ai didi

swift - Swift 代码中的 Collection View Segue

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

我有一个 Collection View ,当我单击按钮时,它应该移动到下一个 Collection View 单元格。正如您在下图中看到的,我有下一个按钮,它不会手动滑动,而是转到其 enter image description here 上的下一个索引。自己的。我尝试过谷歌搜索但没有找到任何答案。

最佳答案

你想要的不是segue,segue主要是在 View Controller 之间切换。就像 @the4kman 提到的,这个问题已经在 Objective-C 中得到了回答,但我可以为你将它转换成 Swift 3。

您要做的是右键单击并从下一个按钮拖动到类中并将其设为一个操作。确保它位于 touchUpInside 上。这将创建一个 IBAction 函数,按下按钮时将调用该函数。

@IBAction func nextBtn_pressed(_ sender: Any) {

let index = 1 //this variable has to be the index of the next cell
collectionView.scrollToItem(at: IndexPath(item: index, section: 0), at: .left, animated: true)
//you can change .left to whatever style you want

}

关于swift - Swift 代码中的 Collection View Segue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45381599/

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