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
- ios
- SWIFT
- Xcode
- 스위프트
- UITextView
- 리팩토링
- Human interface guide
- Refactoring
- 리펙토링
- rxswift
- MVVM
- swift documentation
- ribs
- combine
- uiscrollview
- 리펙터링
- clean architecture
- map
- uitableview
- Protocol
- swiftUI
- 애니메이션
- 클린 코드
- HIG
- Observable
- collectionview
- tableView
- Clean Code
- RxCocoa
Archives
- Today
- Total
목록UIGraphics 개념 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 이미지 리사이징, UIGraphics 개념 (#UIGraphicsBeginImageContextWithOptions, #UIGraphicsGetImageFromCurrentImageContext, #UIGraphicsEndImageContext)
UIImage 이미지 리사이징 * 참고한 코드: https://stackoverflow.com/questions/31314412/how-to-resize-image-in-swift 이미지 리사이징를 하고 싶은 경우, UIImage에서 해상도를 낮추어 리사이징 하는 방법 extension UIImage { func resizeImage(targetSize: CGSize) -> UIImage { let size = self.size let widthRatio = targetSize.width / size.width let heightRatio = targetSize.height / size.height var newSize: CGSize if widthRatio > heightRatio { newSize =..
iOS 응용 (swift)
2023. 9. 25. 01:14