[ios] Added help to menu and switched some menu icons to system symbols

Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com>
This commit is contained in:
Yannik Bloscheck
2025-07-18 15:12:54 +02:00
committed by Yannik Bloscheck
parent a5bd24ccdb
commit 5ae0ef626a
5 changed files with 64 additions and 21 deletions

View File

@@ -32,6 +32,12 @@ class BottomMenuViewController: MWMViewController {
tableView.delegate = presenter
tableView.registerNib(cell: BottomMenuItemCell.self)
tableView.registerNib(cell: BottomMenuLayersCell.self)
NotificationCenter.default.addObserver(forName: UserDefaults.didChangeNotification, object: nil, queue: nil) { _ in
DispatchQueue.main.async {
self.tableView.reloadData()
}
}
}
override func viewDidAppear(_ animated: Bool) {