Skip to content

Commit

Permalink
Prevent the navigation bar from overlapping the follow friends view s…
Browse files Browse the repository at this point in the history
…etting it up in the viewDidAppear instead of the viewWillAppear
  • Loading branch information
jovaluna committed Sep 24, 2024
1 parent dd33564 commit 36037ca
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ internal final class FindFriendsViewController: UITableViewController {
self.viewModel.inputs.viewDidLoad()
}

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

override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
self.navigationController?.setNavigationBarHidden(false, animated: animated)
}

Expand Down

0 comments on commit 36037ca

Please # to comment.