我在视图控制器中添加图像视图。
它在 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];