菜鸟教程小白 发表于 2022-12-13 07:59:07

ios - UIImageView 翻倍并改变大小


                                            <p><p>我遇到了一个让我发疯一段时间的问题,我无法解释出了什么问题。我有一个 UITableView 有不同的 View 和 3 个原型(prototype)单元可供选择。如果我在我的小组模式中,我会从我的 Storyboard中展示原型(prototype) <strong>applicationCell</strong>。第一个条目总是看起来不错,但是如果我有 2 个,则第二个条目中的图像会加倍并调整图像大小,以便显示两次 - 尺寸正确并再次调整到单元格高度(每个单元格中也只有一个图像),请参阅图像:</p>

<p> <img src="/image/vVH1i.png" alt="enter image description here"/> </p>

<p>这里是导致问题的相关代码:</p>

<pre><code>- (UITableViewCell *)tableView:(UITableView *)table
   cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if(app == nil &amp;&amp; groupedMode) {
    UITableViewCell *cell = [table dequeueReusableCellWithIdentifier:@&#34;applicationCell&#34;
                                                      forIndexPath:indexPath];
    UILabel *head = (UILabel*);
    UILabel *badge = (UILabel*);
    UILabel *lastMsg = (UILabel*);
    UIImageView *imgView = (UIImageView*);
    ApplicationEntity *a = ;
    head.text = a.name;
    badge.text = ;
    ImagesEntity *ie = ;
    NSLog(@&#34;V %li&#34;,(long)indexPath.row);
    //imgView.contentMode = UIViewContentModeScaleAspectFit;
    imgView.image = ie.computedImage;
    CGRect r = imgView.bounds;
    NSLog(@&#34;bounds %f %f %f %f&#34;,r.origin.x,r.origin.y,r.size.width,r.size.height);
    r = imgView.frame;
    NSLog(@&#34;frame %f %f %f %f&#34;,r.origin.x,r.origin.y,r.size.width,r.size.height);
    imgView.bounds = CGRectMake(0,0,48,48);
    imgView.frame = CGRectMake(11,2,48,48);
    cell.tag = indexPath.row;
    if(cell.gestureRecognizers.count == 0) {
      UITapGestureRecognizer * gr = [ initWithTarget:self action:@selector(applicationClicked:)];
      ;
    }
    lastMsg.text = ;
    r = imgView.bounds;
    NSLog(@&#34;after bounds %f %f %f %f&#34;,r.origin.x,r.origin.y,r.size.width,r.size.height);
    r = imgView.frame;
    NSLog(@&#34;after frame %f %f %f %f&#34;,r.origin.x,r.origin.y,r.size.width,r.size.height);
    return cell;
}
</code></pre>

<p>UIImageView 有一个 width = height = 48 的约束。到目前为止我测试和发现的内容:</p>

<ol>
<li>将图像设置为零显示无图像 = 无错误</li>
<li>不分配新图像不会显示错误。</li>
<li>只分配一次新图像。</li>
<li><p>当它发生时,UIImageView 会获得新的边界和框架,但是将它们直接设置回正确的值并不能帮助查看日志</p>

<p>V 0
界限 0.000000 0.000000 48.000000 48.000000
帧 11.000000 2.000000 48.000000 48.000000
界限后 0.000000 0.000000 48.000000 48.000000
帧后 11.000000 2.000000 48.000000 48.000000
V 1
界限 0.000000 0.000000 320.000000 110.000000
帧 0.000000 110.000000 320.000000 110.000000
界限后 0.000000 0.000000 48.000000 48.000000
帧后 11.000000 2.000000 48.000000 48.000000</p></li>
</ol>

<p>110 高度是单元格高度,320 是宽度。它违反了约束。此外,我分配的图像是 96x96 像素,因此在 HDPI 显示器中显示效果很好。</p>

<p>顺序和图像可能会改变,所以我需要分配正确的图像。</p>

<p>任何想法为什么会发生这种情况以及如何防止这种情况发生? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>通过谷歌搜索相关答案后,我至少找到了一个解决方案并知道发生了什么。</p>

<p>表格单元格已经拥有自己的图像。还有我的代码</p>

<pre><code>UIImageView *imgView = (UIImageView*);
</code></pre>

<p>应该返回我的 UIImageView,因为它是唯一一个带有标签 1 的集合。显然它不是。在 Storyboard 中将标签更改为 10,代码解决了它。所以我以某种方式改变了单元格的背景图像。</p>

<p>奇怪的是,另一种模式也有原型(prototype)单元格,图像为标签 1,他们没有这种问题。所以我仍然不知道为什么它真的会发生,但至少我知道如何解决它。希望这对其他有类似问题的人有用。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UIImageView 翻倍并改变大小,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30828232/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30828232/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UIImageView 翻倍并改变大小