Thursday, August 1, 2013

Changing the UITableView background color when it was UITableViewStyleGrouped

What you need to do is to run the following code in the viewDidLoad even:

    self.tableView.backgroundColor = [UIColor BlackColor];
    self.tableView.backgroundView = nil;

No comments:

Post a Comment