일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Storyboard
- 어플리케이션
- TableView
- Chrats
- Apple
- cocoapods
- modal
- Python
- 그래프
- Android
- UIKit
- kotlin
- library
- ui
- ios
- alamofire
- UIButton
- Xcode
- graph
- 라이브러리
- 개발
- PyQt5
- button
- UITableView
- Chart
- charts
- Swift
- androidstudio
- 개발자
- PyQt
Archives
- Today
- Total
Jiwift
[iOS/Swift] UIColor 변환 사이트, RGB, Hex Color 색상 값을 Swift 코드로 변환 본문
반응형
Swift UIColor Picker (ralfebert.com)
위에 보이는 값들을 사용해서 Swift에서 사용 가능한 UIColor로 변환해줍니다. 아래 코드 블록은 변환된 결과 예시입니다. 보시는 것과 같이 다양한 방법으로 제공해줍니다.
#colorLiteral(red: 1, green: 0.8, blue: 0, alpha: 1) /* #ffcc00 */
UIColor(hue: 0.1333, saturation: 1, brightness: 1, alpha: 1.0) /* #ffcc00 */
UIColor(hue: 48/360, saturation: 100/100, brightness: 100/100, alpha: 1.0) /* #ffcc00 */
UIColor(red: 1, green: 0.8, blue: 0, alpha: 1.0) /* #ffcc00 */
UIColor(red: 255/255, green: 204/255, blue: 0/255, alpha: 1.0) /* #ffcc00 */
Swift UIColor Picker (ralfebert.com)
반응형
'iOS Dev > iOS' 카테고리의 다른 글
[iOS/Swift] UserDefaults 초기화, 리셋, 데이터 삭제 (2) | 2023.01.11 |
---|---|
[iOS/Swift] UserDefaults 사용법 저장하고 불러오기 간단한 데이터 저장, String, Int, Bool, Array (0) | 2023.01.08 |
[iOS/Swift] 화면 세로 고정 코드, 아이폰 화면 고정 (0) | 2022.11.20 |
[iOS/Swift] 다크모드, 라이트모드 고정 overrideUserInterfaceStyle (0) | 2022.11.05 |
[iOS/Swift] Failed to set (keyPath) user defined inspected property 에러 (0) | 2022.11.05 |