일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- UITextView
- Protocol
- UICollectionView
- 리펙토링
- rxswift
- uiscrollview
- RxCocoa
- Observable
- combine
- Xcode
- Refactoring
- 리팩토링
- collectionview
- Clean Code
- map
- swift documentation
- 애니메이션
- swiftUI
- MVVM
- uitableview
- HIG
- clean architecture
- ribs
- SWIFT
- Human interface guide
- 클린 코드
- 스위프트
- 리펙터링
- ios
- tableView
- Today
- Total
목록endpoint (2)
김종권의 iOS 앱 개발 알아가기
* URLSession 기본 개념은 여기 참고 준비 구현된 해당 소스 코드 사용 시, 아래 작업 사용 후 실행 https://unsplash.com/developers 가입 후 api키 획득 Contants에 accessKey입력 struct Constants { static let accessKey = "Your accessKey" } Network 레이어 설계 네트워크의 핵심 모듈 Endpoint: path, queryPramameters, bodyParameter등의 데이터 객체 Provider: URLSession, DataTask를 이용하여 network호출이 이루어 지는 곳 Endpoint는 요청, 응답 protocol을 준수하는 상태 requestable에는 baseURL, path, met..
CAGradientLayer이란? layer에 색 그라데이션을 입히는데 사용되는 객체 주로 UIView나 UILabel의 text에 그라데이션을 입히는데 사용 CAGradientLayer 사용 방법 객체 생성 후 frame 설정: frame은 적용될 view의 bounds로 설정 let gradientLayer = CAGradientLayer() gradientLayer.frame = myView.bounds 그라데이션에 들어갈 색상 추가(처음 ~ 마지막 순서대로 기입): 타입은 [CGColor] 타입 gradientLayer.colors = [UIColor.orange.cgColor, UIColor.red.cgColor] gradientLayer의 속성을 모두 지정하였으므로 (적용될뷰.layer.add..