I'm trying to set an image as the background for a uiview, here's how I do it:
UIImage *bgImage = [UIImage imageNamed:@"watermark.png"];
self.view.layer.contents = bgImage.CGImage;
self.view.backgroundColor = [UIColor clearColor];
This works in iOS5, but on iOS4 all I get is a black background. Any ideas?
I tried other approaches such as colorWithPatternImage, but that doesn't get the image displayed properly.