I'm using a basic table view cell, set up in IB. The only customization I apply is in cellForRowAtIndexPath, where I simply set the background color of the cell's label (not the color of the cell itself).
[[cell textLabel] setBackgroundColor:[UIColor yellowColor]];
When the table is first drawn, the background color is not applied. As I scroll down, it is applied to new cells as they are drawn. Similarly, if I scroll back up, the top cells are re-drawn with the correct background color.
What is the explanation behind this?

Edit - here's my cellForRowAtIndexPath, and the set up in IB:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
ItemCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ItemCell2"];
[[cell textLabel] setBackgroundColor:[UIColor yellowColor]];
return cell;
}

tableView:cellForRowAtIndexPath:method? Would help us pinpoint the problem. – Ell Neal Feb 21 '12 at 22:25