Je suis l'élaboration d'un iOS 4 application à l'aide de SDK iOS version la plus récente et XCode 4.2.
J'ai un XIB avec un UIWebView
avec Alpha = 1.0, Fond ensemble de Couleur Claire et Opaque n'est pas définie. Sur cette XIB-je configurer une image comme arrière-plan avec ce code:
- (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;
}
L' UIWebView
montre une page html statique:
<html><head></head><body style=\"margin:0 auto;text-align:center;background-color: transparent; color:white\">...</body></html>
Sur iOS 5 simulateur, ses arrière-plan est transparent, mais sur un appareil iOS 4 est gris.
Aucun indice?