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,
views:
169answers:
1
+1
Q:
How do you make a UIViewController background look like the background of a grouped UITableView?
+4
A:
Set the view controller's view's background color to groupTableViewBackgroundColor
[self.view setBackgroundColor:[UIColor groupTableViewBackgroundColor]];
Tom Irving
2010-05-24 21:27:23
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
2010-05-24 23:01:39
Awesome, thanks dude.
Jake
2010-05-25 01:49:07