본문 바로가기

IOS 개발

[iOS] viewDidLoad()

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

 

'IOS 개발' 카테고리의 다른 글

[iOS] 특수문자 (특수기호) 뜻  (0) 2020.02.10
[iOS] class Bundle : NSObject  (0) 2020.02.10
NSObject  (0) 2020.02.06
[ 깃허브 ] Hello World GitHub / What is GitHub?  (0) 2020.02.04
[iOS] CharacterSet  (0) 2020.01.31