Skip to content

Instantly share code, notes, and snippets.

@MaximAlien
Last active August 29, 2015 14:19
Show Gist options
  • Save MaximAlien/148367ebf08eaa1303a5 to your computer and use it in GitHub Desktop.
Save MaximAlien/148367ebf08eaa1303a5 to your computer and use it in GitHub Desktop.
[iOS] [Objective-C] Random color generator
CGFloat h = (arc4random() % 128 / 256.0) + 0.5;
CGFloat s = (arc4random() % 128 / 256.0) + 0.5;
CGFloat b = (arc4random() % 128 / 256.0) + 0.5;
UIColor *color = [UIColor colorWithHue:h saturation:s brightness:b alpha:1.0f];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment