목록ViewController (2)
개발자의 삽질
https://www.hackingwithswift.com/example-code/language/fixing-class-viewcontroller-has-no-initializers Fixing "Class ViewController has no initializers" - free Swift 5.4 example code and tips Was this page useful? Let us know! 1 2 3 4 5 www.hackingwithswift.com ViewController에 프로퍼티를 두고 싶다! 클래스에 프로퍼티를 담을 때는 초기값을 갖고 있거나 생성자를 통해 초기화 과정을 거쳐야 한다. 그러면 ViewController는 어떻게 할까? 일단 아래의 코드는 에러를 발생한다. class..
https://developer.apple.com/documentation/uikit/uiviewcontroller Apple Developer Documentation developer.apple.com ViewController LifeCycle 에 대해 알아보자! 뷰 컨트롤러의 수명주기는 아래의 그림을 통해 알 수 있다. 총 4개의 과정으로 나뉘어져 있다. Appearing: 뷰가 화면에 나타나는 중 Appeared: 뷰가 화면에 나타난 상태 Disappearing: 뷰가 화면에서 사라지는 중 Disappeared: 뷰가 화면에서 사라진 상태 위 4개의 과정 가운데 호출되는 메서드들이 있다. viewDidLoad() 뷰 컨트롤러의 모든 뷰들이 메모리에 로드됐을 때 호출 메모리에 처음 로드될 때 한 ..