forked from organicmaps/organicmaps
[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:
parent
db1b38b40f
commit
6ed297c62e
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue