I implemented a basic UIViewController with a UITableView that\'s wrapped in a UINavigationController. I set prefersLargeTitles to true:
prefersLargeTitles
override fu
For me the only working solution is:
DispatchQueue.main.async { [weak self] in self?.navigationController?.navigationBar.sizeToFit() }
in
viewWillAppear()