Skip to content

Commit

Permalink
[feat] TabBar 숨기기 표시하기 조정 (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
BAEKYUJEONG committed Aug 30, 2024
1 parent fccf1eb commit 261392d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 6 additions & 0 deletions PLUV/Home/HomeViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ class HomeViewController: UIViewController {

setUI()
}

override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
/// 탭 바 표시하기
self.tabBarController?.tabBar.isHidden = false
}
}

extension HomeViewController {
Expand Down
6 changes: 0 additions & 6 deletions PLUV/Platform/TransferSourceViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@ class TransferSourceViewController: UIViewController {
/// 탭 바 숨기기
self.tabBarController?.tabBar.isHidden = true
}

override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
/// 탭 바 표시하기
self.tabBarController?.tabBar.isHidden = false
}
}

extension TransferSourceViewController {
Expand Down

0 comments on commit 261392d

Please sign in to comment.