I\'ve seen some iPhone applications that use a custom image as the background for a grouped UITableView, instead of the standard gray lines.
How is this achieved?
You can use the +[UIColor colorWithPatternImage:(UIImage)] method like so:
+[UIColor colorWithPatternImage:(UIImage)]
self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"Background.png"]];