- Верхнее ограничение Tableview установлено на верхнюю привязку представления UIViewController (Superview).
- Я также пробовал NavigationController?.navigationBar.prefersLargeTitles = true и
navigationItem.largeTitleDisplayMode = .automatic, но это не сработало
override func viewDidLoad() {
super.viewDidLoad()
self.navigationItem.title = NSLocalizedString("profile", comment: "Profile")
let editButton = UIBarButtonItem(barButtonSystemItem: .edit, target: self, action: #selector(editButtonTapped))
navigationItem.rightBarButtonItem = editButton
tableViewProfile.estimatedRowHeight = UITableView.automaticDimension
tableViewProfile.rowHeight = UITableView.automaticDimension
}
Подробнее здесь: https://stackoverflow.com/questions/798 ... -on-scroll
Мобильная версия