UIViewController与背景图像

时间:2010-06-07 15:56:33

标签: iphone ipad uiviewcontroller background-image

如何将来自资源的图像作为背景图像插入到我的UIViewController中? 提前谢谢!

2 个答案:

答案 0 :(得分:18)

添加UIViewController的视图,有点像这样:

- (void) viewDidLoad 
{
   UIImage *background = [UIImage imageNamed: @"background.png"];    
   UIImageView *imageView = [[UIImageView alloc] initWithImage: background]; 

   [self.view addSubview: imageView]; 

   [imageView release];

   [super viewDidLoad];
}

答案 1 :(得分:8)

UIViewControllers没有背景图片。只有视图本身具有视觉属性。

UIView没有背景图片属性。要显示背景图像,通常只需将UIImageView显示在视图层次结构中,以便在所有其他视图后面以可视方式显示。这可以通过编程方式或在Interface Builder中完成。