Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // set color for albums
- let indexValue = indexPath.row % 3
- if indexValue == 1 {
- cell.backgroundImage.tintColor = colorArray[1]
- cell.openBut.tintColor = colorArray[1]
- } else if indexValue == 2 {
- cell.backgroundImage.tintColor = colorArray[2]
- cell.openBut.tintColor = colorArray[2]
- } else if indexValue == 0 {
- cell.backgroundImage.tintColor = colorArray[0]
- cell.openBut.tintColor = colorArray[0]
- }
- if indexPath.row == 0 {
- cell.backgroundImage.tintColor = colorArray[0]
- cell.openBut.tintColor = colorArray[0]
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement