如何以编程方式将“组表视图”模式定义为背景?

时间:2011-02-12 20:05:15

标签: ios objective-c iphone

如何以编程方式将“组表视图”模式定义为背景?

2 个答案:

答案 0 :(得分:4)

组表视图模式是UIColor

的属性
[someView setBackgroundColor:[UIColor groupTableViewBackgroundColor]];

答案 1 :(得分:2)

您使用UIColor类方法groupTableViewBackgroundColor

EG:

self.view.backgroundColor = [UIColor groupTableViewBackgroundColor];

(或者如果你不喜欢点符号:[self.view setBackgroundColor:[UIColor groupTableViewBackgroundColor]];