0

我需要在一个单元格中加载一个图像,我的图像上有一个白色边框。我从链接调用图像,它看起来像这样。

在此处输入图像描述

但我的形象看起来像

在此处输入图像描述

我的图像左侧和右侧出现白色边框。这是我的图像代码

    UIImageView *item=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 115, 130)];

    NSString *imgstring=[NSString stringWithFormat: @"%@",[[mutarray objectAtIndex:indexPath.row ] valueForKey:@"imgurl"]];

    NSURL *imgurl=[NSURL URLWithString:imgstring];

    UIImage *image=[UIImage imageWithData:[NSData dataWithContentsOfURL:imgurl]];


    [item setBackgroundColor:[UIColor clearColor]];
    item.contentMode=UIViewContentModeScaleToFill;
    [item setImage:image];
    [cell.contentView addSubview:item];

请指导...

4

2 回答 2

4

那些白色的边边框在您在问题中发布的图像中……这就是它们也出现在 iOS 中的原因。在照片编辑器中打开该图片,您将看到。

于 2012-07-24T15:14:04.013 回答
0

您可以通过编辑 webimage 来解决它,因为它具有白色背景,您可以添加以下代码来区分图像

item.backgroundcolor=[UIColor blackcolor];

希望能帮助到你..

于 2012-07-24T16:36:14.040 回答