我正在将视图设置为 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 中会出现什么问题?请帮助,在此先感谢。