iOS/설명
[iOS] UIView LifeCycle 생명주기
Sky Titan
2022. 7. 18. 21:24
728x90
Apple Developer Documentation
developer.apple.com
UIView LifeCycle Callback
| method | |
| didAddSubview(_:) | view에게 subview가 추가됨을 알린다. |
| willRemoveSubview(_:) | view에게 subview가 추가될 것임을 알린다. |
| willMove(ToSuperview:) | view에게 superview가 변경될 것임을 알린다. |
| didMoveToSuperview() | view에게 superview가 변경되었음을 알린다. |
| willMove(ToWindow:) | view에게 window객체가 변경될 것임을 알린다. |
| didMoveToWindow() | view에게 window객체가 변경됨을 알린다. |
UIViewController와 UIView의 lifecycle 콜백 호출순서 비교
- ViewController.xib에서 UIView가 추가되어있는 상태임을 가정

728x90