2011-09-30 68 views

回答

0

你可以設置你想要的默認顏色或任何顏色:

cell.backgroundColor=[UIColor clearColor]; 

(或)

cell.backgroundColor=[UIColor blueColor]; 
+1

儘量避免在UITableViewCells上使用[UIColor clearColor],因爲它會影響滾動速度n例如由於需要完成的額外混合。 – hypercrypt

1

設置單元格中tableView:willDisplayCell:forRowAtIndexPath:的背景顏色,例如:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
     cell.backgroundColor = [UIColor blueColor]; 
} 
+0

很好,謝謝你的工作 – MohanVydehi