Have created a bunch of cells which i reuse in a tableview. all of those cells have just different UILabels inside and some UIImageViews (nothing covers the complete cell).
setting the background color in IB has no effect (always white or transparent, can't say which one of them). But if i press Command-R (simulate interface) the cell has the correct background color in the simulator.
try to set it in cellForRowAtIndexPath() doesn't work like I would think either:
this does the trick:
cell.contentView.backgroundColor = [UIColor redColor];but these have no effect (even if i set the cell.contentView.backgroundColor to clearColor):
cell.backgroundView.backgroundColor = [UIColor redColor];
cell.backgroundColor = [UIColor redColor];
I set all the layout/font/background stuff in IB. Any idea why this isn't working in this case?
Why do i need to modify the contentView's backbroundColor and not the backgroundView's?
Seems to be a common issue, could somebody please point me in the right direction to (finally) understand how backgroundColor's are handled within a tableView(Cell).
regards,
klemens