Skip to content

Instantly share code, notes, and snippets.

@tudormunteanu
Created September 11, 2011 16:06
Show Gist options
  • Save tudormunteanu/1209750 to your computer and use it in GitHub Desktop.
Save tudormunteanu/1209750 to your computer and use it in GitHub Desktop.
random UI color
- (UIColor *) getRandomColor {
return [UIColor colorWithRed:(arc4random()%100)/(float)100
green:(arc4random()%100)/(float)100
blue:(arc4random()%100)/(float)100
alpha:1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment