// random(in:) 안에 있는 variation은 원하는 범위로 수정하시면 됩니다.
extension UIColor {
class var ramdomColor: UIColor {
return UIColor(
red: CGFloat.random(in: 0.7...1),
green: CGFloat.random(in: 0.7...1),
blue: CGFloat.random(in: 0.7...1),
alpha: 1
)
}
}
// 사용 방법
view.backgroundColor = .randomColor
틀린부분이 있거나, 더 좋은 방법이 있다면 댓글로 남겨주세요!
🌈댓글은 언제나 환영입니다🙏🏻
반응형
'iOS' 카테고리의 다른 글
Push Notification 과 APNS - iOS (0) | 2022.04.14 |
---|---|
[ScrollView] Auto Layout 설정이 어렵다면 이걸 보세요! - iOS (1) | 2021.11.18 |
github에 올리면 안되는 APIKEY 숨기기 - iOS (10) | 2021.10.26 |
View Life-Cycle - swfit (0) | 2021.07.17 |
Frame / Bounds 의 차이 - Swift (0) | 2021.07.17 |