[ios] Remove bookmark model from observer list.

This commit is contained in:
VladiMihaylenko 2018-04-23 14:31:50 +03:00 committed by Vladimir Byko-Ianko
parent 0b1f559e95
commit 1247ac433d
2 changed files with 10 additions and 3 deletions

View file

@ -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?) {

View file

@ -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 {