views:

674

answers:

1

Hi,

I would like to have a UIView with the same background as a UITableView with the UITableViewStyleGrouped style (its that grey-white pattern seen in the Settings App, for example). Is this possible?

Thanks in advance

MrMage

+6  A: 
view.backgroundColor = [UIColor groupTableViewBackgroundColor];
Chris Karcher