Skip to content

Instantly share code, notes, and snippets.

@tapthaker
Created August 7, 2014 13:50
Show Gist options
  • Save tapthaker/238adeb84752ace35591 to your computer and use it in GitHub Desktop.
Save tapthaker/238adeb84752ace35591 to your computer and use it in GitHub Desktop.
UIColor randomColor
+(UIColor*)randomColor{
return [UIColor colorWithRed:(arc4random()%255)/255.0 green:(arc4random()%255)/255.0 blue:(arc4random()%255)/255.0 alpha:1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment