Je développe une application iOS 4 en utilisant la dernière version du SDK iOS et XCode 4.2.
J'ai un XIB avec un UIWebView
avec Alpha = 1.0 , l' arrière - plan défini sur Clear Color et Opaque n'est pas défini. Sur ce XIB, je configure une image en 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;
}
Le UIWebView
montre un HTML statique:
<html><head></head><body style=\"margin:0 auto;text-align:center;background-color: transparent; color:white\">...</body></html>
Sur le simulateur iOS 5, son arrière-plan est transparent, mais sur un appareil iOS 4 est gris.
Un indice?