Reputation: 409
I have this weird behavior with my UICollectionview
where, briefly during the initial load, the navigation bar expands into the view and then disappears.
Any ideas what could be going on here? Happy to share more information; just let me know what is relevant!
Upvotes: 0
Views: 343
Reputation: 5029
As per our discussion in the comments, you are hiding the navigation bar in viewDidAppear
.
self.navigationController?.isNavigationBarHidden = true
You should instead hide the navigation bar before the view appears, in viewWillAppear
.
Upvotes: 1