我UITableViewCell
在下面的代码中将所有的背景图像设置为相同的模式:
- (void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.backgroundView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"SelectAnAlbumTableViewCellBackground"]] autorelease];
}
哪个有效,除了任何空单元格。我想知道如何设置 ALL 的背景UITableViewCell
,而不仅仅是那些有数据的背景?