Skip to content

Instantly share code, notes, and snippets.

@jinqian
Created April 8, 2013 23:01
Show Gist options
  • Save jinqian/5341309 to your computer and use it in GitHub Desktop.
Save jinqian/5341309 to your computer and use it in GitHub Desktop.
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row%2 == 0) {
UIColor *altCellColor = [UIColor colorWithWhite:0.7 alpha:0.1];
cell.backgroundColor = altCellColor;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment