我正在使用 iOS SDK 最新版本和 XCode 4.2开发一个 iOS 4应用程序。
我有一个 XIB 与 UIWebView
与 Α = 1.0,背景资料设置为 净色和 不透明没有设置。在这个 XIB 上,我用这段代码设置了一个图像作为背景:
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
UIColor *background = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"AboutBackground.png"]];
self.view.backgroundColor = background;
[background release];
}
return self;
}
UIWebView
显示了一个静态 html:
<html><head></head><body style=\"margin:0 auto;text-align:center;background-color: transparent; color:white\">...</body></html>
在 iOS5模拟器上,它的背景是透明的,但在 iOS4设备上是灰色的。
有线索吗?