Yunus Tek
Yunus Tek

Reputation: 626

How to disable large title shrink when scrolling

I want to use large title navigation bar. But navigation bar is getting smaller when I scroll screen. How can I disable shrink to NavigationBar.

        self.navigationController?.navigationBar.prefersLargeTitles = true

Upvotes: 4

Views: 1199

Answers (1)

Yunus Tek
Yunus Tek

Reputation: 626

I solved the problem:

Make sure there is no scrollview at the top of your view hierarchy. If you have scrollView(TableView, CollectionView) it is shrink.

enter image description here

Upvotes: 3

Related Questions