From 27730a1469543268a180892fc4e6af74aadd635f Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Mon, 20 Feb 2023 23:52:37 +0100 Subject: [PATCH] [ios] Correctly unsubscribe from notifications Signed-off-by: Alexander Borsuk --- iphone/Maps/Classes/MWMTextView.m | 2 +- iphone/Maps/Core/Location/MWMLocationManager.mm | 7 +------ iphone/Maps/UI/Search/MWMSearchManager+Layout.h | 1 + iphone/Maps/UI/Search/MWMSearchManager+Layout.m | 4 ++++ iphone/Maps/UI/Search/MWMSearchManager.mm | 1 + 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/iphone/Maps/Classes/MWMTextView.m b/iphone/Maps/Classes/MWMTextView.m index b3c4426f39..7c95bcbd6b 100644 --- a/iphone/Maps/Classes/MWMTextView.m +++ b/iphone/Maps/Classes/MWMTextView.m @@ -21,7 +21,7 @@ } - (void)dealloc { - [NSNotificationCenter.defaultCenter removeObserver:self name:UITextViewTextDidChangeNotification object:nil]; + [NSNotificationCenter.defaultCenter removeObserver:self]; } - (UILabel *)placeholderView { diff --git a/iphone/Maps/Core/Location/MWMLocationManager.mm b/iphone/Maps/Core/Location/MWMLocationManager.mm index 47a2130b24..9a3eca9a37 100644 --- a/iphone/Maps/Core/Location/MWMLocationManager.mm +++ b/iphone/Maps/Core/Location/MWMLocationManager.mm @@ -465,12 +465,7 @@ void setShowLocationAlert(BOOL needShow) { } else { _started = NO; [self stop]; - [notificationCenter removeObserver:self - name:UIDeviceOrientationDidChangeNotification - object:nil]; - [notificationCenter removeObserver:self - name:UIDeviceBatteryStateDidChangeNotification - object:nil]; + [notificationCenter removeObserver:self]; } } diff --git a/iphone/Maps/UI/Search/MWMSearchManager+Layout.h b/iphone/Maps/UI/Search/MWMSearchManager+Layout.h index f5c19347f4..c39e4c5980 100644 --- a/iphone/Maps/UI/Search/MWMSearchManager+Layout.h +++ b/iphone/Maps/UI/Search/MWMSearchManager+Layout.h @@ -3,5 +3,6 @@ @interface MWMSearchManager (Layout) - (void)layoutTopViews; +- (void)removeKeyboardObservers; @end diff --git a/iphone/Maps/UI/Search/MWMSearchManager+Layout.m b/iphone/Maps/UI/Search/MWMSearchManager+Layout.m index f397ff84c9..f5ed87b18f 100644 --- a/iphone/Maps/UI/Search/MWMSearchManager+Layout.m +++ b/iphone/Maps/UI/Search/MWMSearchManager+Layout.m @@ -85,6 +85,10 @@ static CGFloat const changeModeViewOffsetKeyboard = -12; object:nil]; } +- (void)removeKeyboardObservers { + [[NSNotificationCenter defaultCenter] removeObserver:self]; +} + #pragma mark - keyboard movements - (void)keyboardWillShow:(NSNotification *)notification { CGSize keyboardSize = [[[notification userInfo] objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue].size; diff --git a/iphone/Maps/UI/Search/MWMSearchManager.mm b/iphone/Maps/UI/Search/MWMSearchManager.mm index d78d39a872..afabe94d26 100644 --- a/iphone/Maps/UI/Search/MWMSearchManager.mm +++ b/iphone/Maps/UI/Search/MWMSearchManager.mm @@ -485,6 +485,7 @@ using Observers = NSHashTable; [contentView removeFromSuperview]; [actionBarView removeFromSuperview]; [searchBarView removeFromSuperview]; + [self removeKeyboardObservers]; }]; }