Notice
Recent Posts
Recent Comments
Link
목록델리게이트 업 (1)
大器晩成

생성자 위임 규칙(Initializer Delegation)스위프트의 상속관계에서는 지정생성자와 편의 생성자에 대한 3가지 규칙을 가지고 있습니다.서브클래스의 지정생성자는 상위클래스의 지정생성자를 호출해야 합니다.편의 생성자는 동일한 클래스의 다른 지정생성자를 호출해야 합니다.편의 생성자는 궁극적으로 지정 생성자를 호출해야 합니다.class Bird { var species: String var name: String init(species: String, name: String) { self.species = species self.name = name } convenience init() { self.init(species..
iOS/Swift 문법
2024. 12. 6. 19:30