我正在试图找出如何在collectionView启动时以编程方式选择一个单元格。同样,collectionView的默认加载应该选择第一个单元格。
我正在使用shouldSelectItemAtIndexPath作为我的选择函数,所以我想为特定的单元格索引调用它。
到目前为止,我已经尝试过:
collectionView(self.collectionView!, shouldSelectItemAtIndexPath: self.collectionView!.indexPathForCell(CVcellArray.first!)!)
在我的自定义CollectionView脚本的viewDidLoad函数中。
加载collectionView时崩溃了。我做错了吗?
谢谢。
答案 0 :(得分:6)
在viewDidAppear
中,只需致电selectItemAtIndexPath
。