UITableView backgroundColor在iPad上始终为灰色
当我为我的UITableView
设置backgroundColor
,它在iPhone(设备和模拟器)上工作正常,但不在iPad模拟器上。 相反,我为包含groupTableViewBackgroundColor
任何颜色设置了浅灰色背景。
重现步骤:
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor blackColor];
}
谢谢你的帮助!
尝试其中之一。
[myTableView setBackgroundView:nil];
[myTableView setBackgroundView:[[[UIView alloc] init] autorelease]];
非常感谢这个解决方案。 我在UIViewController中将它应用于UITableView属性和IBOutlet,它的工作原理如下:
[panelTable setBackgroundView:nil];
[panelTable setBackgroundView:[[[UIView alloc] init] autorelease]];
[panelTable setBackgroundColor:UIColor.clearColor]; // Make the table view transparent
在iPad上, backgroundView
属性似乎用于为分组表创建灰色背景颜色。 所以为了改变iPad上分组表格的背景颜色,应该nil
backgroundView
属性,然后在所需的表格视图上设置backgroundColor
。
- (void)viewDidLoad
{
[super viewDidLoad];
// If you need to support iOS < 3.2, check for the availability of the
// backgroundView property.
if ([self.tableView respondsToSelector:@selector(setBackgroundView:)]) {
self.tableView.backgroundView = nil;
}
self.tableView.backgroundColor = [UIColor whiteColor];
}
链接地址: http://www.djcxy.com/p/95697.html
上一篇: UITableView backgroundColor always gray on iPad
下一篇: Change database dynamically in SQL Server using a stored procedure