Skip to content

Commit

Permalink
refactor/#277 생명주기에 맞게 함수 위치 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
youz2me committed Aug 8, 2024
1 parent 994294c commit 4de1141
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ class CheckInviteCodeViewController: BaseViewController {

// MARK: LifeCycle

override func loadView() {
view = checkInviteCodeView
}

override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)

Expand All @@ -28,10 +32,6 @@ class CheckInviteCodeViewController: BaseViewController {

navigationController?.isNavigationBarHidden = true
}

override func loadView() {
view = checkInviteCodeView
}


// MARK: Setup
Expand Down

0 comments on commit 4de1141

Please sign in to comment.