Last active
April 3, 2025 02:20
-
-
Save Jon-Schneider/37bc7bef6420f1c3fc7e40b71a9d463e to your computer and use it in GitHub Desktop.
UIColor+Random
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// 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