I have a lot of UITableViewControllers
, and I want to have custom background color, and I don't want to copy this to all TVC:
self.tableView.backgroundColor = [UIColor clearColor];
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"backgroundPattern.png"]];
Any ideas, please?