views:

169

answers:

1

Hi, sorry this is probably a dumb question, but I want to make the background of a normal UIViewController look like the gray, pinstriped background that of a grouped UITableView. Is this possible. Tell me if you need pictures, and I'll post some. Thanks for any help,

+4  A: 

Set the view controller's view's background color to groupTableViewBackgroundColor

[self.view setBackgroundColor:[UIColor groupTableViewBackgroundColor]];
Tom Irving
Note that this doesn't seem to work on the iPad (or at least I haven't been able to get it to work as such)
Ed Marty
Awesome, thanks dude.
Jake