본문 바로가기

Programming/Swift

Initialization

Initialization is the process of preparing an instance of a class, structure, or enumeration for use. This process involves setting an initial value for each stored property on that instance and performing any other setup or initialization that is required before the new instance is ready for use.

 

docs.swift.org/swift-book/LanguageGuide/Initialization.html#:~:text=Initialization%20is%20the%20process%20of,instance%20is%20ready%20for%20use.

 

Initialization — The Swift Programming Language (Swift 5.3)

Initialization Initialization is the process of preparing an instance of a class, structure, or enumeration for use. This process involves setting an initial value for each stored property on that instance and performing any other setup or initialization t

docs.swift.org

 

youtu.be/9GoKcRmy-G0

 

'Programming > Swift' 카테고리의 다른 글

UIKit  (0) 2020.10.23
switch statement  (0) 2020.10.23
Swift, iOS공부하면서 참고하면 좋은 사이트들  (0) 2020.10.16
window  (0) 2020.10.16
UIStackView  (0) 2020.10.15