我正在使用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>
在iOS 5模拟器上,其背景是透明的,但在iOS 4设备上是灰色的。
有什么线索吗?
尝试仅将UIImageView放在界面生成器中的Webview上并将其设置为图像。
—
Stas,
感谢您的回答,但网络视图无法覆盖整个屏幕。
—
VansFannel 2011年