Why doesn\'t UITableViewCell background color work (set in interface builder)?
I note from some searching that the follow code set in your custom subclass of UITable
You should always provide changes for cells in tableView:willDisplayCell:forRowAtIndexPath: instead of the tableView:cellForRowAtIndexPath: method, as per Apple Documentation.
tableView:willDisplayCell:forRowAtIndexPath:
tableView:cellForRowAtIndexPath:
This Works !!