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
- 애니메이션
- swiftUI
- MVVM
- rxswift
- SWIFT
- swift documentation
- Human interface guide
- ribs
- Refactoring
- 리팩토링
- UICollectionView
- Observable
- combine
- clean architecture
- 리펙터링
- RxCocoa
- UITextView
- 스위프트
- uitableview
- HIG
- map
- 클린 코드
- Xcode
- tableView
- uiscrollview
- 리펙토링
- Clean Code
- Protocol
- ios
- collectionview
Archives
- Today
- Total
목록contribute (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] GitHub 깃 허브 contribute 방법 (컨트리뷰트, cocoapods 수정해서 사용하는 방법)
예제로 사용할 오픈소스 - Then 초기화하는 동시에, 클로저를 통해서 해당 인스턴스의 프로퍼티에 접근하여 코드를 깔끔하게 구현할 수 있는 오픈소스 // then 사용하지 않은 일반 코드 private let label: UILabel = { let label = UILabel() label.text = "label" label.translatesAutoresizingMaskIntoConstraints = false return label }() // then 사용 private let label = UILabel().then { $0.text = "label" $0.translatesAutoresizingMaskIntoConstraints = false } 오픈소스에 없는 코드를 오픈소스에 추가하여 사..
Git, CocoaPods, Xcode, Shell
2022. 4. 17. 22:02