我正在使用 SDWebImage。我从 Web 服务 API 中正确提取图像,但如果我从中获取响应的 API 没有图像(“null”),我想重新对齐我的表视图单元格。
视图控制器.m
if ([fL.images count] == 0) {
//trying to figure out what to put here to change row height
}
else {
}
WebListCell.m
- (void)layoutSubviews {
[super layoutSubviews];
// (X, Y, Width, Height)
self.publishedLabel.frame = CGRectMake(300, 210, 20, 20);
self.imageView.frame = CGRectMake(0, 0, 320, 180);
self.headlineLabel.frame = CGRectMake(10, 210, 290, 40);
self.descriptionLabel.frame = CGRectMake(10, 250, 290, 30);
self.premiumLabel.frame = CGRectMake(260, 2, 60, 20);
}
我的问题是当没有图像并且我想重新对齐我的表格视图单元格时,我找不到一个好的“if”语句。
我想我需要为此做点什么WeblistCell.m
,heightForRowAtIndexPath
但我很难过。
任何帮助,将不胜感激!
将发布所需的任何必要代码!