我试着写
[self collectionView:myCollectionView didSelectItemAtIndexPath:selectedIndexPath]
和UICollectionViewCell的选择= YES,它确实实现了方法didSelectItemAtIndexPath
,但未选择单元格。
我在UICollectionViewCell子类的(void)setSelected:(BOOL)selected
中编写了所选状态。加载视图后,手动选择功能起作用。但是在视图第一次加载后我不能让它自动选择一些项目。
我试着写代码:
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
和
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
,一切都不行。
我发现它首先运行viewDidLoad
和didSelectItemAtIndexPath
,然后是cellForItemAtIndexPath
,似乎我无法获取indexPath
中的单元格(我知道)在cellForItemAtIndexPath
之前,因为在此之前该单元格不存在。那么如何在UICollectionView
首次加载后选择一些项目?
抱歉我的英语不好。提前谢谢。
答案 0 :(得分:11)
不确定,如果你的问题是正确的,但这是一个可能的解决方案:
例如viewWillAppear:
做
[self.collectionView reloadData];
NSIndexPath *selection = [NSIndexPath indexPathForItem:THE_ITEM_TO_SELECT
inSection:THE_SECTION];
[self.collectionView selectItemAtIndexPath:selection
animated:YES
scrollPosition:UICollectionViewScrollPositionNone];
请记住,以编程方式调用'selectItemAtIndexPath'不会调用相关的委托方法;如果需要,你必须在代码中调用它们。
答案 1 :(得分:9)
在我的情况下,selectItemAtIndexPath
在reloadData
之后无效,所以我不得不在performBatchUpdates
的完成区中调用它:
collectionView.dataSource = ...
collectionView.delegate = ...
let indexPath = ...
collectionView.performBatchUpdates(nil) { _ in
collectionView.selectItemAtIndexPath(indexPath, animated: false, scrollPosition: .None)
}