表格单元格高度随机不计算某些单元格高度

时间:2014-11-13 02:17:13

标签: ios objective-c uitableview autolayout sdwebimage

我有一个很少表视图单元格高度,它们在屏幕上随机计算一些单元格高度。

enter image description here

(向下滚动)

**只有当它们离开屏幕,然后向上滚动时,才会根据需要进行计算。

(滚动备份)

有没有人听说过这个,或者知道该怎么做?

我使用AutoLayout,Storyboards,SDWebImage从网址加载图片,此代码在cellForRowAtIndexPath

 __weak TableViewCellTwo *wcell = api2Cell;
[wcell.imageViewPic
    sd_setImageWithURL:[NSURL URLWithString:@"http://dummyimage.com/600x600/000/fff.png"]
    placeholderImage:[UIImage imageNamed:@"fff.png"]
    completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
// Put Log
        }
 ];

我的故事板: enter image description here

更新 想添加我的问题,看看能不能得到答案。仍然有这个问题。想知道在没有使用heightForRowAtIndexPath的情况下是否有任何方法可以做到这一点。这只是一个iOS错误吗?

0 个答案:

没有答案