func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "HomePageTitleCell", for: indexPath) as! HomePageTitleCell
cell.news = homePageViewController.sliderList[indexPath.row]
let returnleft = IndexPath(row: 0, section: 0)
self.collectionView.scrollToItem(at: returnleft, at: UICollectionViewScrollPosition.left, animated: true)
return cell
}
如何在加载returnleft
后使用UICollectionView
?
let returnleft = IndexPath(row: 0, section: 0)
self.collectionView.scrollToItem(at: returnleft, at: UICollectionViewScrollPosition.left, animated: true)
无法在cellForItemAt
答案 0 :(得分:0)
cellForItemAt
仅用于在表格视图中创建单元格。它将为您表中的每个单元格调用一次(不一定是一次,但是当您滚动到表格视图中时)。
因此,请将您的代码移到更合适的位置,例如viewDidLoad
。
let returnleft = IndexPath(row: 0, section: 0)
self.collectionView.scrollToItem(at: returnleft, at:UICollectionViewScrollPosition.left, animated: true)