일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- type
- Method
- Unicode
- Swift
- initializer
- initalizer
- IOS
- Git
- delegate
- 이니셜라이저
- optional
- Class
- instance
- tuist
- interpace
- extension
- enum
- 코딩테스트
- url
- property
- String
- Terminal
- init
- Xcode
- struct
- Foundation
- 디자인패턴
- 스위프트
- UIKit
- Protocol
Archives
- Today
- Total
목록Override (1)
아리의 iOS 탐구생활
[iOS/UIKit] init(frame:)와 init(coder:)
UIView 요소를 코드로 직접 커스텀하여 사용하기 위해 만들던 와중에 override 이니셜라이저와 required 이니셜라이저, 총 2개의 이니셜라이저를 정의해야한다는 것을 알게되었다. override init(frame: CGRect) { super.init(frame: frame) } required init(coder: NSCoder) { super.init(coder: coder) } 근데 이 둘의 정체는 뭘까..?? 왜 재정의하며 파라미터로는 각각 다른 타입을 받고있는데, 어떤 것을 초기화하는 것일까? 한번 알아보자. # init(frame:) Apple Developer Documentation developer.apple.com 코드로 UIView Class의 View 인스턴스를 만들기 ..
Swift/iOS
2021. 12. 1. 16:14