问题:
How can I set the background of UITableView (the tableview style is "Grouped") to use an image?
答案:
In newer versions of the SDK, you'll need to set tableView.backgroundView
if you want it to be transparent, try something like this:
tableView.backgroundColor = [UIColor clearColor];
tableView.opaque = NO;
tableView.backgroundView = nil;