1

我在视图控制器中添加图像视图。
它在 ios6 中运行良好,但在 ios7 中它以白色背景显示。

我已经尝试过clearColor,但它不起作用。
这是我的代码

[imgcharacter setImage:[UIImage imageNamed:[NSString stringWithFormat:@"character%d.png",reelBtnTag]]];

[imgcharacter setFrame:CGRectMake(100,100, 247.5f, 385.0f)];
imgcharacter.userInteractionEnabled=YES;
 [imgcharacter setBackground : [UIColor clearColor]];          
[captureview addSubview:imgcharacter];
4

1 回答 1

1

试试这个方法......

NSData *imageData = UIImagePNGRepresentation(Your Image);
    UIImage *image=[UIImage imageWithData:imageData];
    UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(10, 52, 40, 50)];
    imageView.backgroundColor = [UIColor clearColor];
    imageView.image = image;
于 2013-10-21T11:26:44.407 回答