- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath {
〜省略〜
UIImageView *backgroundView = [[UIImageView alloc] init];
folderView.image = backgroundImage;
cell.backgroundView = backgroundView;
cell.textLabel.text = @"iPhone 4";
cell.backgroundColor = [UIColor clearColor];
}
willDisplayCellで指定するようです。
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { cell.textLabel.backgroundColor = [UIColor clearColor]; }
的確な回答ありがとうございました。
思った通りに表示できました。