Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 리펙터링
- ios
- rxswift
- map
- 리팩토링
- uiscrollview
- 스위프트
- swiftUI
- 클린 코드
- UITextView
- Human interface guide
- Refactoring
- UICollectionView
- 애니메이션
- Clean Code
- collectionview
- Xcode
- HIG
- swift documentation
- MVVM
- SWIFT
- Protocol
- Observable
- combine
- ribs
- clean architecture
- RxCocoa
- uitableview
- 리펙토링
- tableView
Archives
- Today
- Total
목록withRenderingMode (1)
김종권의 iOS 앱 개발 알아가기
[iOS - Swift] UIImage RenderingMode 개념 (automatic, alwaysOriginal, alwaysTemplate, withRenderingMode)
UIImage RenderingMode 이란 UIImage의 값을 원본과 같이 색상이 있는것으로 표현할것인지, 원본 색상을 지운 형태만 가져갈것인지 선택 automatic: 컨텍스트의 기본 모드를 선택하며 지정해주지 않을 경우 디폴트 값 (보통 alwaysOriginal) alwaysOriginal: 원본 색상사용 alwaysTemplate: 원본 이미지의 색상을 없애고 tintColor만 남기는 옵션 @available(iOS 7.0, *) public enum RenderingMode : Int, @unchecked Sendable { case automatic = 0 case alwaysOriginal = 1 case alwaysTemplate = 2 } 사용 방법 UIImage의 withRende..
iOS 응용 (swift)
2022. 12. 19. 23:13