我使用自定義tableviewcell和添加圖像視圖的單元格。當我試圖將附件揭示指示器添加到該單元時,附件視圖的背景將變爲灰色(這是默認設置)。問題與自定義tableviewcell imageview和配件視圖
請參閱此影像
任何一個可以告訴這個解決方案?
我使用自定義tableviewcell和添加圖像視圖的單元格。當我試圖將附件揭示指示器添加到該單元時,附件視圖的背景將變爲灰色(這是默認設置)。問題與自定義tableviewcell imageview和配件視圖
請參閱此影像
任何一個可以告訴這個解決方案?
你可以設置你想要的默認顏色或任何顏色:
cell.backgroundColor=[UIColor clearColor];
(或)
cell.backgroundColor=[UIColor blueColor];
設置單元格中tableView:willDisplayCell:forRowAtIndexPath:
的背景顏色,例如:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.backgroundColor = [UIColor blueColor];
}
很好,謝謝你的工作 – MohanVydehi
儘量避免在UITableViewCells上使用[UIColor clearColor],因爲它會影響滾動速度n例如由於需要完成的額外混合。 – hypercrypt