Reputation: 468
How do I replace the vertical blue-gray stripes background in a grouped UITableView? For example, it would be cool to have a background of horizontal stripes instead!
Here is a nice example:
(source: pessoal.org)
Upvotes: 9
Views: 2524
Reputation: 12436
Changing the backgroundColor on the tableView should work
tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.png"]];
Upvotes: 12