UICollectionView滚动的时候会出现cell消失的情况
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这个不是UICollectionView的bug,是你layoutAttributesForElementsInRect:方法返回的内容不对。详情可参考:https://github.com/lqcjdx/YLT...
看样子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.”, 你有试过这个方法吗?
可以去我博客看看,有几种解决方法 http://blog.csdn.net/winer888/article/details/50380183
UICollectionView是没有问题的,不知道你遇到的是什么情况,看看这个是否一致http://www.jianshu.com/p/2a4c...