好吧,我有一个表格视图,我想设置背景。
我试过这个:
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
但发送到后面是不可点击的。