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 |
Tags
- RxCocoa
- rxswift
- Xcode
- Clean Code
- Protocol
- HIG
- 애니메이션
- combine
- Refactoring
- Human interface guide
- swiftUI
- UITextView
- ribs
- map
- SWIFT
- clean architecture
- uiscrollview
- tableView
- collectionview
- 리펙토링
- 클린 코드
- swift documentation
- ios
- uitableview
- 리팩토링
- Observable
- MVVM
- 리펙터링
- UICollectionView
- 스위프트
Archives
- Today
- Total
목록컨트리뷰트 (1)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bj8AHr/btrzvUF5l6Z/Zn8wcv0n1LgquhKMcZHHVK/img.png)
예제로 사용할 오픈소스 - 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