Skip to content

Instantly share code, notes, and snippets.

@Jon-Schneider
Last active April 3, 2025 02:20
Show Gist options
  • Save Jon-Schneider/37bc7bef6420f1c3fc7e40b71a9d463e to your computer and use it in GitHub Desktop.
Save Jon-Schneider/37bc7bef6420f1c3fc7e40b71a9d463e to your computer and use it in GitHub Desktop.
UIColor+Random
/// Simple extension to generate a random UIColor
public extension UIColor {
static var random: UIColor {
return UIColor(
red: CGFloat.random(in: 0...1),
green: CGFloat.random(in: 0...1),
blue: CGFloat.random(in: 0...1),
alpha: 1
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment