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 |
Tags
- 리펙토링
- RxCocoa
- 리팩토링
- ribs
- collectionview
- swiftUI
- tableView
- 애니메이션
- Observable
- swift documentation
- 리펙터링
- map
- clean architecture
- Human interface guide
- ios
- Clean Code
- 스위프트
- combine
- uiscrollview
- MVVM
- HIG
- UITextView
- Protocol
- rxswift
- Xcode
- UICollectionView
- SWIFT
- Refactoring
- 클린 코드
- uitableview
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] (초기화) designated init vs convenience init 본문
Designated init (지정 초기화)
- 역할: 해당 클래스에 의해 선언된 모든 property를 모두 초기화하고 적절한 super class의 init을 호출하여 super class까지 init 프로세스를 진행
- Designated init은 그냥 "Designated"를 생략하여 그냥 init으로 사용
Convenience init (편의 초기화)
- Designated init의 parameter중 일부를 기본값으로 설정하여 동일한 클래스에서 지정된 initializer를 호출하도록 정의
예시
- designated init
class Person {
let name: String
let age: Int
let birthDay: String
init(name: String, age: Int, birthDay: String) {
self.name = name
self.age = age
self.birthDay = birthDay
}
}
- convenience init
- 또 다른 해석: 기존 designated init에 default를 주고 싶은 경우 사용
class Person {
let name: String
let age: Int
let birthDay: String
init(name: String, age: Int, birthDay: String) {
self.name = name
self.age = age
self.birthDay = birthDay
}
convenience init(age: Int, birthDay: String) {
self.init(name: "홍길동", age: age, birthDay: birthDay)
}
}
// convenience init 사용
let person = Person(age: 12, birthDay: "121212")
* 참고
https://docs.swift.org/swift-book/LanguageGuide/Initialization.html
'swift 5 문법' 카테고리의 다른 글
[iOS - swift] 예약어를 변수로 사용 (backtic, `기호) (0) | 2021.06.23 |
---|---|
[iOS - swift] (프로퍼티) Stored property vs Computed property vs Type property (0) | 2021.06.16 |
[swift] 19. struct vs. class (0) | 2020.10.01 |
[swift] 18. 초기화(initialize) 심화 개념 (0) | 2020.10.01 |
[swift] 17. 연산자 재정의 (0) | 2020.09.27 |
Comments