我试图更改填充 UITableView cell.backgroundColor=[UIColor blueColor]; 的单元格的颜色 但它仍然是单元格的黑色。
-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath {
if (tofriend) {
if (indexPath.section==0){
static NSString *CellIdentifier;
CellIdentifier= @"MyCell";
MyCell *cell =(MytCell*) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell) {
[[NSBundle mainBundle] loadNibNamed:@"MyCell" owner:self options:nil]; cell = myCell;
}
cell.backgroundColor=[UIColor blueColor];
好的,我知道它是 cell.contentView.backgroundColor。