菜鸟教程小白 发表于 2022-12-12 16:25:09

iphone - TableView 中图像的大小不正确


                                            <p><p>我正在使用来自 URL 的图像创建一个表格 View ,但是在我将其按在行中之前,图像不会重新调整到所有 View 的大小。
知道为什么会这样吗?
这是一个自定义的 tableview </p>

<p>我的代码是:</p>

<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView    cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    static NSString *CellIdentifier = @&#34;Celula_Noticias&#34;;

   Celula_Noticias *cell = (Celula_Noticias*);

    if (cell == nil) {

    NSArray * top= [ loadNibNamed:@&#34;Celula_Noticias&#34; owner:self options:nil];

    for(id currentObject in top){
      if (]) {
            cell= (Celula_Noticias *) currentObject;
            break;
      }

    }


}


cell.Image_Noticias_1.image= objectAtIndex:0]]]];

cell.Image_Noticias_2.image= objectAtIndex:2]]]];

cell.Titulo_Noticias_1.text=[ objectAtIndex:1];
cell.Titulo_Noticias_2.text=[ objectAtIndex:3];


return cell;
</code></pre>

<p>}</p>

<p>表格已正确填充,但图像的开头尺寸不正确。</p>

<p>我尝试过使用 CGRectMake,但还是不行。</p>

<p>谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>创建一个函数对下载的图像进行后期处理:</p>

<pre><code>- (UIImage*)postProcessImage:(UIImage*)image
{
      CGSize itemSize = CGSizeMake(50, 50);

      UIGraphicsBeginImageContext(itemSize);
      CGRect imageRect = CGRectMake(0.0, 0.0, itemSize.width, itemSize.height);
      ;
      UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
      UIGraphicsEndImageContext();
      return newImage;
}
</code></pre>

<p>上面的函数会给你一个50*50的漂亮图像。</p>

<p>那么你可以这样做:</p>

<pre><code>UIImage* downloadedImage = ]];
UIImage* newImage = ;
cell.imageView.image=newImage
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - TableView 中图像的大小不正确,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/6178579/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/6178579/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - TableView 中图像的大小不正确