화면은 어떻게 구성할까?! View 한가운데에 “Hello World”가 쓰인 Label 두기 lazy var helloWorldLabel: UILabel = { let label = UILabel() label.text = "Hello World" return label } () UILabel 인스턴스 생성하고 하지만 사용하려면 View가 Load 되었을 때 호출해주어야 함 · · · View component들의 생김새를 관리하는 함수들을 한곳에 모아두기 // MARK: Configures func configureViewComponents() { self.view.backgroundColor = .systemBackground } self는 RootViewController를 의미한다 .system..