We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
viewDidLoad()
Will
Did
override
The text was updated successfully, but these errors were encountered:
No branches or pull requests
# View Controller의 생명주기
viewDidLoad()
라는 함수를 익숙하게 만날 수 있는데, 그것 역시 ViewController의 생명 주기 안에 속해있는 함수이다.Will
,Did
로 나뉘어져 있는데 이는 말 그대로 나타날 것, 나타났음, 사라질 것, 사라졌음을 의미한다.override
라는 키워드와 함께 사용한다.loadView
viewDidLoad
→ 리소스를 초기화, 초기 화면을 구성하는 용도로 사용됨
viewWillAppear
viewDidAppear
viewWillDisAppear
viewDidDisAppear
LifeCycle 동작 확인하기
🔖 출처
The text was updated successfully, but these errors were encountered: