Udemy Angela Yu 강의 내용 중 -- computed property var aProperty: Int { return 2+5 } 결국 aProperty는 2+5와 같음. 응용: Clima 프로젝트 중 struct WeatherModel { let conditionId: Int let cityName: String let temperature: Double //소수점 한자리까지만 표시 var temperatureString: String { return String(format: "%1f", temperature) } } WeatherManager.swift 파일 내에서 let weather = WeatherModel(conditionId: id, cityName: name, temperatu..