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 です。