Skip to content

Instantly share code, notes, and snippets.

@theothertomelliott
Last active August 29, 2015 14:27
Show Gist options
  • Save theothertomelliott/e1d137ef0511b53c069c to your computer and use it in GitHub Desktop.
Save theothertomelliott/e1d137ef0511b53c069c to your computer and use it in GitHub Desktop.
Pretty Rainbow UICollectionView
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// Get your cell here
cell.backgroundColor = [UIColor colorWithHue:(float)indexPath.row/[collectionView numberOfItemsInSection:indexPath.section] saturation:0.8 brightness:1 alpha:1];
// Do more stuff here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment