0

好吧,我有一个表格视图,我想设置背景。

我试过这个:

self.mapMain.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"maptest.png"]];

还有这个:

NSString *backgroundPath = [[NSBundle mainBundle] pathForResource:@"maptest" ofType:@"png"];
UIImage *backgroundImage = [UIImage imageWithContentsOfFile:backgroundPath];
UIColor *backgroundColor = [[UIColor alloc] initWithPatternImage:backgroundImage];
self.mapMain.backgroundColor = backgroundColor;
[backgroundColor release];

但问题是这样的:我可以看到图像,但就像它在每个单元格中重复一样。如果我在列表之后滚动,我可以看到图像的其余部分。我想要的是图像是静态的,而不是在每个单元格中重复。所以图像是iphone屏幕的高度,每个单元格高度是80。

我也尝试在我的视图控制器中插入一个 UIImageview,然后做了,Edit>Arrange>send to Back但发送到后面是不可点击的。

4

1 回答 1

1

在 viewDidLoad 中试试这个

[self.tableView setBackgroundView:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"maptest"]]];
于 2012-09-05T11:39:16.687 回答