Skip to content

Instantly share code, notes, and snippets.

@st-small
Created July 21, 2018 12:29
Show Gist options
  • Save st-small/dcaeb02a8250d199ac5b60c16aa97c24 to your computer and use it in GitHub Desktop.
Save st-small/dcaeb02a8250d199ac5b60c16aa97c24 to your computer and use it in GitHub Desktop.
Random color
private func randomColor() -> UIColor {
return UIColor(red: CGFloat(arc4random()) / CGFloat(UInt32.max),
green: CGFloat(arc4random()) / CGFloat(UInt32.max),
blue: CGFloat(arc4random()) / CGFloat(UInt32.max),
alpha: 1.0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment