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
- map
- uiscrollview
- Protocol
- Clean Code
- UICollectionView
- rxswift
- swift documentation
- SWIFT
- MVVM
- collectionview
- uitableview
- combine
- 리팩토링
- Refactoring
- Xcode
- RxCocoa
- ios
- ribs
- Human interface guide
- UITextView
- 스위프트
- 클린 코드
- tableView
- Observable
- 리펙토링
- swiftUI
- clean architecture
- 리펙터링
- HIG
- 애니메이션
Archives
- Today
- Total
목록rasterizeationScale (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] CALayer 성능 향상 방법 (shouldRasterize, rasterizeationScale, draw)
shouldRasterize 개념 CALayer의 bool 프로퍼티 open class CALayer : NSObject, NSSecureCoding, CAMediaTiming { open var shouldRasterize: Bool } compositing전에 bitmap으로 만들고 이 bitmap을 활용하여 화면에 그림을 그릴지 여부 (default값은 false) *compositiong: 여러 개의 그래픽 요소를 하나의 이미지로 결합하는 프로세스를 의미 shouldRasterize를 true로 하게되면 CALayer들을 픽셀로 판단하여 bitmap으로 변환하여 그림을 그림 CALayer를 통해 매우 복잡한 그림을 그려야할때 true로 사용하는것이 유리 (CALayer에 의해서 다양한 그림을 그릴..
iOS 응용 (swift)
2024. 2. 16. 01:34