gpt4 book ai didi

ios - 如果没有图像,更改行单元格高度

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:39:20 24 4
gpt4 key购买 nike

我正在使用 SDWebImage。我正在从 Web 服务 API 正确提取图像,但如果我从中获得响应的 API 没有图像(“null”),我想重新对齐我的表格 View 单元格。

ViewController.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”语句并且我想重新对齐我的表格 View 单元格。

我想我需要为此在 WeblistCell.mheightForRowAtIndexPath 中做一些事情,但我很难过。

如有任何帮助,我们将不胜感激!

将发布所需的任何必要代码!

最佳答案

看起来您已经非常接近自己的解决方案了。关键是方法 -heightForRowAtIndexPath: - 当行没有图像时,这需要返回不同的高度。我对 SDWebImage 不熟悉,但如果您从某种网络服务加载图像,则在尝试加载图像时应该知道图像用于哪一行(索引)。因此,如果您去检索图像但没有图像(空),请将该索引添加到 mutable array跟踪丢失的图像。然后你的 -heightForRowAtIndexpath: 方法只需要检查 row property of the indexPath该数组中存在参数。

关于ios - 如果没有图像,更改行单元格高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19612062/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com