Skip to content

Instantly share code, notes, and snippets.

@aChase55
Created November 3, 2018 19:38
Show Gist options
  • Save aChase55/f095bf5f4586fcdc3ccfb859b3ff572e to your computer and use it in GitHub Desktop.
Save aChase55/f095bf5f4586fcdc3ccfb859b3ff572e to your computer and use it in GitHub Desktop.
Objc Random UIColor macro
#define RANDOM_COLOR [[UIColor alloc] initWithRed:arc4random()%256/256.0 green:arc4random()%256/256.0 blue:arc4random()%256/256.0 alpha:1.0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment