Large title to small title switch in navigation bar is not smooth iOS 13, sticky
问题 I have a UINavigationController with default value of it's navigationBar.prefersLargeTitles = true . I am switching that to false when I push into a new scene lets call it ( DetailsViewController ), by changing it into the viewWillDisappear . override func viewWillDisappear(_ animated: Bool) { super.viewWillDisappear(animated) navigationController?.navigationBar.prefersLargeTitles = false } Now in DetailsViewController I am using willMove(to parent:) . override func willMove(toParent parent: