以下のコードを使用して xib からセルを直接読み込んでいますが、xib で設定してもセルの背景色が表示されず、コードで設定しているという問題があります。問題について教えてください。
xib で設定された背景色が表示されない理由を知りたい
static NSString *cellIdentifier = @"GameCell123";
UITableViewCell *cell = [tableViewTemp dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil)
{
NSArray *array=[[NSBundle mainBundle] loadNibNamed:@"GameCell" owner:self options:nil];
if (array !=nil && [array count]>0)
{
cell=[array objectAtIndex:0];
}
[cell setAccessoryView:[cell viewWithTag:3]];
[(UIButton *)[cell viewWithTag:assessoryButtonCellSubviewTag] addTarget:self action:@selector(teamsAccessoryButtonTap:event:) forControlEvents:UIControlEventTouchUpInside];
cell.backgroundColor=[UIColor blueColor];
//cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:cellIdentifier] autorelease];
// seting teams button as accessory view;
}