gpt4 book ai didi

ios - 更新 UICollectionView 中不可见的单元格

转载 作者:行者123 更新时间:2023-12-01 18:50:54 26 4
gpt4 key购买 nike

我需要在我的应用程序中使用可扩展的 UICollectionView - 所以我遇到了这个项目 (https://github.com/apploft/APLExpandableCollectionView)。它是实现展开和折叠行为的 UICollectionView 的子类。

我已扩展演示应用程序以在可扩展单元格中显示 + 或 - 按钮。

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
APLCollectionViewCell* cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"APLCollectionViewCell" forIndexPath:indexPath];

if (indexPath.item == 0) {
cell.label.text = [NSString stringWithFormat:@"Section %li", (long)indexPath.section + 1];
cell.backgroundColor = [UIColor colorWithRed:58./255. green:165./255. blue:192./255. alpha:1.];
cell.indentView.hidden = YES;
cell.label_OnOff.text = @"+";
} else {
cell.label.text = [NSString stringWithFormat:@"Item %li", (long)indexPath.row];
cell.backgroundColor = [UIColor colorWithRed:58./255. green:165./255. blue:192./255. alpha:.5];
cell.indentView.hidden = NO;
[cell.label_OnOff setHidden:YES];
}

return cell; 
}

要在 + 和 - 之间切换,我实现了委托(delegate)方法:
- (void)collectionView:(UICollectionView *)collectionView didCollapseItemAtIndexPath:(NSIndexPath *)indexPath
{
APLCollectionViewCell *cell = (APLCollectionViewCell*)[collectionView cellForItemAtIndexPath:indexPath];
cell.label_OnOff.text = @"+";
}

- (void)collectionView:(UICollectionView *)collectionView didExpandItemAtIndexPath:(NSIndexPath *)indexPath
{
APLCollectionViewCell *cell = (APLCollectionViewCell*)[collectionView cellForItemAtIndexPath:indexPath];
cell.label_OnOff.text = @"-";
}

正如您在屏幕截图中看到的,可见单元格已正确更新。一旦我向下滚动到以前的不可见单元格,+ 按钮就会消失。
当 UICollectionView 中只有几个项目时不会出现此问题,因此无需滚动到更多项目。

Screenshot

我对不可见细胞的 IndexPath 做错了什么,还是您对我有任何其他提示?
谢谢!

最佳答案

添加以下行

cell.indentView.hidden = NO;

就在 cellForItemAtIndexPath 中的 if else 条件之前。它可能会帮助你。

关于ios - 更新 UICollectionView 中不可见的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31025020/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com