0

我正在设置UITableView分组图像,但它显示整个表格我希望它应该像下面的第二个表格它应该只作为背景图像的单元格和表格区域而不是第二个表格中的灰色边框谢谢。

在此处输入图像描述

4

3 回答 3

4

使用以下代码。

self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"Background.png"]];

有关为分组设置背景图像的另一种方法,UITableView请阅读本文档。

于 2013-02-25T06:35:32.650 回答
1
UIImageView *tempImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"TableViewBackground.png"]];
[tempImageView setFrame:self.tableView.frame]; 
self.tableView.backgroundView = tempImageView;
[tempImageView release];
于 2013-02-25T06:39:27.973 回答
-2

而不是将背景图像提供给表格。为单元格提供背景图像/颜色。

cell.backgroundColor=[UIColor colorWithPatternImage:[UIImage  imageNamed:@"Background.png"]];

since colorWithPattern is very expensive which causes memory leak,avoid using colorWithPatternImage

instead you can use 
cell.backgroundColor=[UIColor initWithRed:0.25 green:0.25 blue:0.25 alpha:1];


//change the RGB as per the image
于 2013-02-25T07:21:30.257 回答