如何在UICollectionView加载完成后启动函数?

时间:2017-01-04 07:40:51

标签: ios swift

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

中工作

1 个答案:

答案 0 :(得分:0)

cellForItemAt仅用于在表格视图中创建单元格。它将为您表中的每个单元格调用一次(不一定是一次,但是当您滚动到表格视图中时)。

因此,请将您的代码移到更合适的位置,例如viewDidLoad

let returnleft = IndexPath(row: 0, section: 0)
self.collectionView.scrollToItem(at: returnleft, at:UICollectionViewScrollPosition.left, animated: true)