我在单元格中显示1张图像,需要根据宽高比更改高度。但是如果我不重新加载表格,则约束不会改变,因此细胞高度也不会改变。如果我使用' reloadData'或重新加载特定行,它是可以的,但滚动性能会受到影响。其中一种方法是首先下载所有图像,但我猜可能不是很好。我该怎么办?
Media *media = self.post.medias[0];
NSString *imgUrlStr = media.thumbnailUrl;
[self.ivMain allowTapWithMedia:self.post.medias[0]];
UIImage* displayImage = [myCache imageFromDiskCacheForKey:imgUrlStr];
if (displayImage) {
@try {
[self.ivMain setImage:displayImage];
CGFloat ivHeight = (displayImage.size.height/displayImage.size.width) * CGRectGetWidth(self.ivMain.frame);
if (roundf(ivHeight) != roundf(self.verticalConstraintIvMain.constant))
[self.verticalConstraintIvMain setConstant:ivHeight];
} @catch (NSException *exception) {
}
}
else {
[self.ivMain setImageWithURL:[NSURL URLWithString:imgUrlStr] completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
//image width > iv width
//image height .. ?
dispatch_async(dispatch_get_main_queue(), ^{
CGFloat ivHeight = (image.size.height/image.size.width) * CGRectGetWidth(self.ivMain.frame);
if (roundf(self.verticalConstraintIvMain.constant) != roundf(ivHeight)) {
// [self.verticalConstraintIvMain setConstant:ivHeight];
id view = [self superview];
while (view && [view isKindOfClass:[UITableView class]] == NO) {
view = [view superview];
}
UITableView *tableView = (UITableView *)view;
[tableView reloadData];
// [tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:self.tag inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
}
});
} usingActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
}
答案 0 :(得分:2)
已知的解决方案是在用户滚动时不重新加载行。不可能同时进行主要布局操作和平滑滚动。
因此,当异步图像下载调用返回时,通过查看表视图属性(继承自UIScrollView
)isDragging
和isDecelerating
来检测用户是否正在滚动。如果用户正在滚动,而是将“索引路径重新加载”放入某个存储中。由于以下原因,表视图数据源/委托中的任何内容都是最好的可变数组属性。当用户停止滚动时,重新加载路径并清除存储。
您可以通过实施UIScrollViewDelegate
方法-scrollViewDidEndDecelerating:
来完成最后一步。表视图的委托也是滚动视图的委托。它可以在实践中产生很好的效果,以便在滚动停止时看到多个图像。