关于cell那点事!

  1. 去除cell的边线

 [tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];


2.更改cell的背景图片

[cell.backgroundView setFrame:CGRectMake(0, 0, 320, 66)];
cell.backgroundColor=[UIColor clearColor];
cell.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"home.png"]];    


待加。。。

你可能感兴趣的:(关于cell那点事!)