프로퍼티
-
[Swift] 프로퍼티 옵저버 (Property Observers)카테고리 없음 2022. 12. 1. 22:56
https://jusung.gitbook.io/the-swift-language-guide/language-guide/10-properties#property-observers 프로퍼티 (Properties) - The Swift Language Guide (한국어) 프로퍼티는 클래스, 구조체, 열거형과 관련한 값입니다. 프로퍼티의 종류에는 저장 프로퍼티(Stored Properties)와 계산된 프로퍼티(Computed Properties)가 있습니다. 저장 프로퍼티는 말 그대로 값을 저 jusung.gitbook.io import UIKit var myAge = 0 { willSet{ print("값이 설정될 예정이다. myAge: \(myAge)") } didSet { print("값이 설정되었다...