-1

I added the UINavigationBar with a large title in it. After that, I added a UITableView to this UIViewController. I gave the large title content mode to .always. But when I scroll the UITableView it hides and showed in the top of theUINavigationBar`

navigationController?.navigationBar.prefersLargeTitles = true
self.navigationItem.largeTitleDisplayMode = .always
Muneeb Ali
  • 472
  • 6
  • 14
Ambrose Jesuraj
  • 103
  • 1
  • 10

1 Answers1

3

If you want to keep your large title while scrolling your UITableView, then add a UIView on top of your UITableView, like:

enter image description here

Pavel Kozlov
  • 993
  • 6
  • 16