IOS 개발
[iOS] viewDidLoad()
0miming
2020. 2. 7. 16:01
Instance Method
viewDidLoad()
컨트롤러의 뷰가 메모리에 로드 된 후 호출됩니다.
Called after the controller's view is loaded into memory.
선언
Declaration
func viewDidLoad()
토론
Discussion
이 메소드는 뷰 컨트롤러가 뷰 계층을 메모리에 로드 한 후에 호출됩니다. 이 메소드는 뷰 계층 구조가 nib 파일에서 로드 되었는지 또는 loadView () 메소드에서 프로그래밍 방식으로 작성되었는지에 관계없이 호출됩니다. nib 파일에서 로드 된 뷰에서 추가 초기화를 수행하려면 일반적으로 이 방법을 대체합니다.
This method is called after the view controller has loaded its view hierarchy into memory. This method is called regardless of whether the view hierarchy was loaded from a nib file or created programmatically in the loadView() method. You usually override this method to perform additional initialization on views that were loaded from nib files.
참고항목
See Also
관련 문서
Related Documentation
loadView(), view