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
- 클린 코드
- Xcode
- uitableview
- map
- combine
- swift documentation
- MVVM
- Human interface guide
- 리펙터링
- Clean Code
- 애니메이션
- rxswift
- UITextView
- clean architecture
- uiscrollview
- collectionview
- swiftUI
- Observable
- SWIFT
- 스위프트
- tableView
- Protocol
- HIG
- UICollectionView
- ribs
- ios
- RxCocoa
- 리팩토링
- 리펙토링
- Refactoring
Archives
- Today
- Total
목록Designated (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Designated init, convenience init 사용하는 시점
Designated init 코드에서는 designated를 생략하여 init으로만 작성 클래스 내부에 초기화되지 않은채 존재하는 property들을 designated init에서 초기화 필수 class Person { var name: String var age: Int var etc: String? // optional형 > nil로 자동 초기화 // designated init에서 초기화되지 않은 property 모두 초기화 init(name: String, age: Int) { self.name = name self.age = age } } Convenience init 핵심은 '편의' init 해당 코드에서 내부의 designated init 호출이 가능 designated init에서는 se..
iOS 응용 (swift)
2021. 7. 29. 00:56