Last active
August 29, 2015 14:27
-
-
Save theothertomelliott/e1d137ef0511b53c069c to your computer and use it in GitHub Desktop.
Pretty Rainbow UICollectionView
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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