UICollectionView滚动的时候会出现cell消失的情况

发布于 2022-08-28 12:01:14 字数 1604 浏览 15 评论 0

RT,具体情况是:滚下去的时候发现最后一排不显示了,再滚上来,第一排的cell也不显示了。

但是不论是消失的第一排还是最后一排,都可以触发didSelectItemAtIndexPath

参考了如下提问:
http://stackoverflow.com/questions/13360975/uicollectionviews-cell-disappearing-ios
http://stackoverflow.com/questions/15310824/uicollectionview-cell-disappears

看来stackoverflow上也没能很好的解决这个问题。
如果没有work around的话就只好试试PSTCollectionView了。

环境:XCode 5.1,编译目标iOS 7.1


@未解 的提醒,将相关代码贴上:

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    AppInMineCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"AppInMineCell" forIndexPath:indexPath];
    App *app = [self.myapps objectAtIndex:indexPath.row];

    NSURL *url = [NSURL URLWithString:[app.iconURL stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]];

    cell.appName.text = app.name;
    //appIcon是一个继承了UIImageView的AsyncImageView,可自行pod search
    cell.appIcon.imageURL = url;

    // circular app icon so Apple won't say we copy
    cell.appIcon.layer.masksToBounds = YES;
    cell.appIcon.layer.cornerRadius = 32.0f;

    return cell;
}

UPDATE:

发现并不是只要往上滑下面的cell就会消失,scroll滚动的程度要大到触发了bounce,才会出现cell消失的情况。

temperory fix: 禁用bounce

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

梦年海沫深 2022-09-04 12:01:14

这个不是UICollectionView的bug,是你layoutAttributesForElementsInRect:方法返回的内容不对。详情可参考:https://github.com/lqcjdx/YLT...

落花浅忆 2022-09-04 12:01:14

看样子UICollectionView还是有bug的! 你贴的链接里有人说解决了这个问题:“Rob's tip about the bug helped me. The bug states that if the section insets and cells widths and spacing add up exactly to the width of the screen then the first column sometimes randomly dissappears and reappears for some cells in some places. Rather than subclass or change the cell widths, I changed the section insets for left and right in my storyboard from 6 to 4 and it I haven't seen the problem again.”, 你有试过这个方法吗?

゛时过境迁 2022-09-04 12:01:14

可以去我博客看看,有几种解决方法 http://blog.csdn.net/winer888/article/details/50380183

过度放纵 2022-09-04 12:01:14

UICollectionView是没有问题的,不知道你遇到的是什么情况,看看这个是否一致http://www.jianshu.com/p/2a4c...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文