6

我正在将视图设置为 uitableview 的背景。View 只是有 colorWithPatternImage。

它在 iOS6 中正常工作,但在 iOS7 中,它没有任何效果,TableView 背景在 iOS7 中仍然只是白色。我正在使用 Three20 库。

我的代码是

UIImage *imgBackGround = [UIImage imageNamed: @"my_background.png"];
self.tableView.backgroundColor = [UIColor clearColor];

UIView *backView = [[UIView alloc] initWithFrame:self.view.frame];
[backView setBackgroundColor:[UIColor colorWithPatternImage:imgBackGround]];
self.tableView.backgroundView = backView;
[backView release];
self.view.backgroundColor=[UIColor colorWithPatternImage:imgBackGround];

iOS7 中会出现什么问题?请帮助,在此先感谢。

4

1 回答 1

7

在 iOS 7 中,tableview 的单元格自动具有白色背景色。您需要清除单元格的颜色和背景。

cell.backgroundColor = [UIColor clearColor];
cell.backgroundView =  [UIView new];

在 cellForRowAtIndexPath 中使用

这肯定会解决它。

于 2013-10-09T12:22:48.010 回答