일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- String
- property
- Unicode
- Terminal
- 디자인패턴
- initializer
- extension
- struct
- Xcode
- UIKit
- Protocol
- Method
- initalizer
- type
- tuist
- enum
- instance
- delegate
- url
- init
- Class
- optional
- Git
- Swift
- interpace
- 이니셜라이저
- 코딩테스트
- IOS
- Foundation
- 스위프트
Archives
- Today
- Total
목록init(frame:) (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