forked from organicmaps/organicmaps-tmp
[ios] Remove bookmark model from observer list.
This commit is contained in:
parent
0b1f559e95
commit
1247ac433d
2 changed files with 10 additions and 3 deletions
|
@ -42,20 +42,19 @@ final class BMCViewController: MWMViewController {
|
|||
|
||||
override func viewDidAppear(_ animated: Bool) {
|
||||
super.viewDidAppear(animated)
|
||||
|
||||
// Disable all notifications in BM on appearance of this view.
|
||||
// It allows to significantly improve performance in case of bookmarks
|
||||
// modification. All notifications will be sent on controller's disappearance.
|
||||
viewModel.setNotificationsEnabled(false)
|
||||
|
||||
viewModel.addToObserverList()
|
||||
viewModel.convertAllKMLIfNeeded()
|
||||
}
|
||||
|
||||
override func viewDidDisappear(_ animated: Bool) {
|
||||
super.viewDidDisappear(animated)
|
||||
|
||||
// Allow to send all notifications in BM.
|
||||
viewModel.setNotificationsEnabled(true)
|
||||
viewModel.removeFromObserverList()
|
||||
}
|
||||
|
||||
private func updateCategoryName(category: BMCCategory?) {
|
||||
|
|
|
@ -222,6 +222,14 @@ extension BMCDefaultViewModel: BMCViewModel {
|
|||
func areNotificationsEnabled() -> Bool {
|
||||
return BM.areNotificationsEnabled()
|
||||
}
|
||||
|
||||
func addToObserverList() {
|
||||
BM.add(self)
|
||||
}
|
||||
|
||||
func removeFromObserverList() {
|
||||
BM.remove(self)
|
||||
}
|
||||
}
|
||||
|
||||
extension BMCDefaultViewModel: MWMBookmarksObserver {
|
||||
|
|
Loading…
Add table
Reference in a new issue