UITableViewCell
以下のコードでは、すべての の背景画像を同じパターンに設定しています。
- (void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.backgroundView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"SelectAnAlbumTableViewCellBackground"]] autorelease];
}
空のセルを除いて、これは機能します。UITableViewCell
データが含まれているものだけでなく、ALL の背景をどのように設定すればよいのでしょうか。