Skip to content

Instantly share code, notes, and snippets.

@lvjian700
Created May 19, 2013 09:33
Show Gist options
  • Select an option

  • Save lvjian700/5607194 to your computer and use it in GitHub Desktop.

Select an option

Save lvjian700/5607194 to your computer and use it in GitHub Desktop.
Custom UITableView & Cell backgroud color
#table
self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"bg_window_landscape.png"]]
#Cell
UIView *backgrdView = [[UIView alloc] initWithFrame:cell.frame];
backgrdView.backgroundColor = [UIColor whiteColor];
cell.backgroundView = backgrdView;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment