菜鸟教程小白 发表于 2022-12-12 16:01:00

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


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

<p>ViewController.m</p>

<pre><code>if ( == 0) {
      //trying to figure out what to put here to change row height
    }
    else {
}
</code></pre>

<p>WebListCell.m</p>

<pre><code>- (void)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);
}
</code></pre>

<p>我的问题是当没有图像时我找不到合适的 <strong>“if”语句</strong>,我想重新对齐表格 View 单元格。</p>

<p>我认为我需要为此在 <code>WeblistCell.m</code> 和 <code>heightForRowAtIndexPath</code> 中做一些事情,但我很难过。</p>

<p>任何帮助将不胜感激!</p>

<p>将发布所需的任何必要代码!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>看起来您已经非常接近自己的解决方案了。关键是方法 <code>-heightForRowAtIndexPath:</code> - 这需要在行没有图像的情况下返回不同的高度。我对 SDWebImage 不熟悉,但如果您从某种 Web 服务加载图像,则在尝试加载图像时应该知道图像的哪一行(索引)。因此,如果您要检索图像并且没有图像(空),请将该索引添加到 <a href="https://developer.apple.com/library/ios/documentation/Cocoa/Reference/Foundation/Classes/NSMutableArray_Class/Reference/Reference.html" rel="noreferrer noopener nofollow">mutable array</a>跟踪丢失的图像。然后你的 <code>-heightForRowAtIndexpath:</code> 方法只需要检查 <a href="https://developer.apple.com/library/ios/documentation/uikit/reference/NSIndexPath_UIKitAdditions/Reference/Reference.html" rel="noreferrer noopener nofollow">row property of the indexPath</a>参数存在于该数组中。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如果没有图像,则更改行单元格高度,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19612062/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19612062/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如果没有图像,则更改行单元格高度