我想在我的分组表视图中设置自定义背景(图像)。 在xib文件中,我在表格下添加了imageView,将表格设置为clearColor,看起来很正常(在Xib中!)但是当我启动应用程序时,我看到标准背景
在Xib文件中:
在申请中:
答案 0 :(得分:2)
// instead of adding a UIImageView to the background
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image_name"]];
self.tableView.backgroundColor = [UIColor clearColor];