Skip to content

Commit

Permalink
chore :: 뷰 로드 시점 분리
Browse files Browse the repository at this point in the history
  • Loading branch information
cyj513 committed Nov 18, 2024
1 parent f512498 commit ff2bb36
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Projects/Presentation/Sources/Base/BaseViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,13 @@ open class BaseViewController<ViewModel: BaseViewModel>: UIViewController, UIGes
viewWillAppearRelay.accept(())
bindAction()
}
open override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
open override func viewWillLayoutSubviews() {
super.viewWillLayoutSubviews()
addView()
setLayout()
}
open override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
configureNavgationBarLayOutSubviews()
setLayoutData()
}
Expand Down

0 comments on commit ff2bb36

Please sign in to comment.