John Lane
John Lane

Reputation: 468

Replace the blue-gray stripes background in a grouped UITableView?

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:

Like this one
(source: pessoal.org)

Upvotes: 9

Views: 2524

Answers (1)

nduplessis
nduplessis

Reputation: 12436

Changing the backgroundColor on the tableView should work

tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.png"]];

Upvotes: 12

Related Questions