Saturday, July 5, 2014

Change background of UITableView

You additionally need to disable the background view of _tableView:


[_tableView setBackgroundView:nil];
 _tableView.backgroundColor = [UIColor redColor];
No need to add new view to backgroundView. This is working for me in iOS6 and above.

No comments:

Post a Comment