如何以编程方式将“组表视图”模式定义为背景?
答案 0 :(得分:4)
组表视图模式是UIColor
:
[someView setBackgroundColor:[UIColor groupTableViewBackgroundColor]];
答案 1 :(得分:2)
您使用UIColor类方法groupTableViewBackgroundColor
EG:
self.view.backgroundColor = [UIColor groupTableViewBackgroundColor];
(或者如果你不喜欢点符号:[self.view setBackgroundColor:[UIColor groupTableViewBackgroundColor]];
)