Created
October 7, 2013 19:12
-
-
Save andkon/6873278 to your computer and use it in GitHub Desktop.
Random colour
This file contains 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
// Sometimes you just need a random colour! I think I got this from apress's Beginning iOS Development book, kudos to them. | |
CGFloat hue = ( arc4random() % 256 / 256.0 ); // 0.0 to 1.0 | |
CGFloat saturation = ( arc4random() % 128 / 256.0 ) + 0.5; // 0.5 to 1.0, away from white | |
CGFloat brightness = ( arc4random() % 128 / 256.0 ) + 0.5; // 0.5 to 1.0, away from black | |
UIColor *color = [UIColor colorWithHue:hue saturation:saturation brightness:brightness alpha:1]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment