I\'m trying to change the background color of UITableViewHeaderFooterView. Although the view is appearing, the background color remains the default color. I\'m getting a log
Make sure you set the backgroundColor of the contentView for your UITableViewHeaderFooterView:
contentView
UITableViewHeaderFooterView
self.contentView.backgroundColor = [UIColor whiteColor];
Then it will work.