[ios] fix bug when the layers menu doesn't layouted properly on appear

On some ios versions the `tableView.layoutIfNeeded()` is called but the view doesnt set as it should be relayouted. This bug is founded on the iPhone Xs Max 18.2.
https://github.com/organicmaps/organicmaps/issues/10143#issuecomment-2620913027

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2025-01-29 13:59:41 +04:00 committed by Viktor Havaka
parent db1b38b40f
commit 6ed297c62e

View file

@ -43,6 +43,7 @@ class BottomMenuViewController: MWMViewController {
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
tableView.setNeedsLayout()
tableView.layoutIfNeeded()
heightConstraint.constant = min(tableView.contentSize.height, view.height)
tableView.isScrollEnabled = tableView.contentSize.height > heightConstraint.constant;