I want to change the background colour of a cell inside UITableView from default white to something else. If the style is UITableViewStylePlain then its very easy and we can just do:
tableView.backgroundColor = [UIColor blackColor];
However, the same is not happening inside UITableViewStyleGrouped.
Can anyone kindly help me out ? Thanks.