[self collectionView:myCollectionView didSelectItemAtIndexPath:selectedIndexPath]
并且在ViewDidLoad中选择了UICollectionViewCell = YES,并且它确实实现了方法didSelectItemAtIndexPath,但是未选择该单元格.
我在UICollectionViewCell子类的(void)setSelected:(BOOL)中选择了所选状态.视图加载后,手动选择功能有效.但是我不能让它在视图的第一次加载之后自动选择一些项目.
我试图写代码:
– (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
和
– (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath,一切都不行.
我发现它首先运行viewDidLoad和didSelectItemAtIndexPath,然后是cellForItemAtIndexPath,似乎我不能在cellPath(我知道)之前获取单元格在cellForItemAtIndexPath之前,因为之前的单元格不存在.那么在首次加载UICollectionView后如何选择一些项目?
对不起我可怜的英语提前致谢.
解决方法
在例如viewWillAppear:做
[self.collectionView reloadData]; NSIndexPath *selection = [NSIndexPath indexPathForItem:THE_ITEM_TO_SELECT inSection:THE_SECTION]; [self.collectionView selectItemAtIndexPath:selection animated:YES scrollPosition:UICollectionViewScrollPositionNone];
记住,以编程方式调用“selectItemAtIndexPath”不调用相关的委托方法;如果需要,您必须在代码中调用它们.