是否可以将自定义背景图像设置为分组tableView?

时间:2012-09-26 08:30:23

标签: iphone objective-c uitableview

我想在我的分组表视图中设置自定义背景(图像)。 在xib文件中,我在表格下添加了imageView,将表格设置为clearColor,看起来很正常(在Xib中!)但是当我启动应用程序时,我看到标准背景

在Xib文件中:

enter image description here

在申请中:

enter image description here

1 个答案:

答案 0 :(得分:2)

// instead of adding a UIImageView to the background
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image_name"]];
self.tableView.backgroundColor = [UIColor clearColor];