[Swift] Properties(1) - Stored, Computed, Observer
2023. 1. 17. 21:03
iOS/Swift
Swift에서 Property는 크게 5가지로 나뉜다. Stored Properties(저장 프로퍼티) Computed Properties(연산 프로퍼티) Property Observers(프로퍼티 감시자) Property Wrappers(프로퍼티 래퍼) Type Properties(타입 프로퍼티) Stored Properties 가장 간단한 형태의 Stored Properties는 class 혹은 structure의 instance에만 관련된 값을 저장한다. variable Stored Property(변수 저장 프로퍼티)는 var 키워드를 사용하며, constant Stored Property(상수 저장 프로퍼티)는 let 키워드를 사용한다. struct SomeStruct { var variable..