我試圖將圖像設置爲背景的一個UIView類型的圖像,這裏就是我如何做到這一點:背景「水印」的UIViewController中
UIImage *bgImage = [UIImage imageNamed:@"watermark.png"];
self.view.layer.contents = bgImage.CGImage;
self.view.backgroundColor = [UIColor clearColor];
這個工程在iOS5中,但在iOS4的我得到的是黑色的背景。有任何想法嗎?
我嘗試了其他方法,如colorWithPatternImage,但沒有正確顯示圖像。
這應該工作,因爲我相信,iPhone OS 2.0。確保視圖具有非零大小,並且由於其他不相關的情況,圖像不爲零。 – Costique 2012-01-13 17:26:50