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
- UICollectionView
- UITextView
- Clean Code
- clean architecture
- rxswift
- SWIFT
- combine
- Refactoring
- tableView
- ribs
- HIG
- Protocol
- Xcode
- uitableview
- swiftUI
- uiscrollview
- ios
- swift documentation
- 애니메이션
- 리팩토링
- map
- collectionview
- Human interface guide
- MVVM
- 리펙터링
- 클린 코드
- 리펙토링
- Observable
- RxCocoa
- 스위프트
Archives
- Today
- Total
목록UIView를 Image로 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] UIView를 UIImage로 변환 방법, UIView to UIImage (asImage)
UIView에 extension으로 asImage()추가 UIGraphicsImageRenderer(bounds:)의미: Core Graphics 지원 이미지를 만들기 위한 그래픽 렌더러 UIView의 layer.render(in:)에서 렌더러 context를 넣으면 기존 UIView가 UIImage로 변환 extension UIView { func asImage() -> UIImage { let renderer = UIGraphicsImageRenderer(bounds: bounds) return renderer.image { rendererContext in layer.render(in: rendererContext.cgContext) } } } image처럼 사용 class ViewControlle..
iOS 응용 (swift)
2021. 7. 30. 22:21